VLab Issue #7704 - Fixed problem with LMADecoder decoding single level files. Added optional colormaps that would be useful for some users; Changed scaling on few parameters in image style rules; fixes #7704
Change-Id: If8599b7bf64c788063aa63e3bfc07c84a55654fd Former-commit-id:eba4333d02
[formerly7164c4729d
[formerly d747cb5700e68997f6b7b579d9d8f9d9698fbd8a]] Former-commit-id:7164c4729d
Former-commit-id:1df3f4e987
This commit is contained in:
parent
197a0d9316
commit
f6db1928e4
6 changed files with 656 additions and 136 deletions
|
@ -64,7 +64,7 @@ public class LmaDecoder {
|
||||||
*/
|
*/
|
||||||
public PluginDataObject[] decode(File fileInput) throws Exception {
|
public PluginDataObject[] decode(File fileInput) throws Exception {
|
||||||
//Create an empty records to hold the data once decoded.
|
//Create an empty records to hold the data once decoded.
|
||||||
GridRecord[] records = null;
|
List<GridRecord> recordsList = new ArrayList<GridRecord>();
|
||||||
|
|
||||||
/** The variable dictionary used to check which variables are supported by the ingest **/
|
/** The variable dictionary used to check which variables are supported by the ingest **/
|
||||||
LMAVarsDict lmaVarsDict = LMAVarsDict.getInstance();
|
LMAVarsDict lmaVarsDict = LMAVarsDict.getInstance();
|
||||||
|
@ -105,7 +105,6 @@ public class LmaDecoder {
|
||||||
float dy= yresAtt.getNumericValue().floatValue();
|
float dy= yresAtt.getNumericValue().floatValue();
|
||||||
int nx = file.findDimension("x").getLength();
|
int nx = file.findDimension("x").getLength();
|
||||||
int ny = file.findDimension("y").getLength();
|
int ny = file.findDimension("y").getLength();
|
||||||
int nz = file.findDimension("levels_17").getLength();
|
|
||||||
//Construct the grid coverage with attributes
|
//Construct the grid coverage with attributes
|
||||||
GridCoverage cov =createMapCoverage(centerLon, centerLat, nx, ny, dx, dy);
|
GridCoverage cov =createMapCoverage(centerLon, centerLat, nx, ny, dx, dy);
|
||||||
//Lookup Coverage to make sure it does not already exist in the db.
|
//Lookup Coverage to make sure it does not already exist in the db.
|
||||||
|
@ -129,17 +128,15 @@ public class LmaDecoder {
|
||||||
|
|
||||||
String[] listOfVariablesToProcess = new String[sizeOfVariablesToProcess];
|
String[] listOfVariablesToProcess = new String[sizeOfVariablesToProcess];
|
||||||
varsToProcessList.toArray(listOfVariablesToProcess);
|
varsToProcessList.toArray(listOfVariablesToProcess);
|
||||||
//
|
|
||||||
//Create initial Grid Record array
|
|
||||||
int count =0;
|
|
||||||
records = new GridRecord[sizeOfVariablesToProcess*nz];
|
|
||||||
//Iterate over variables and create GridRecords for each variable and level
|
//Iterate over variables and create GridRecords for each variable and level
|
||||||
for (int i = 0; i<sizeOfVariablesToProcess; ++i ) {
|
for (int i = 0; i<sizeOfVariablesToProcess; ++i ) {
|
||||||
Variable v = file.findVariable(listOfVariablesToProcess[i]);
|
Variable v = file.findVariable(listOfVariablesToProcess[i]);
|
||||||
|
int nz = v.getDimension(1).getLength();
|
||||||
for (int j=0; j< nz; ++j) {
|
for (int j=0; j< nz; ++j) {
|
||||||
records[count] = new GridRecord();
|
GridRecord record = new GridRecord();
|
||||||
records[count].setPersistenceTime(TimeUtil.newDate());
|
record.setPersistenceTime(TimeUtil.newDate());
|
||||||
records[count].setDataTime(dataTime);
|
record.setDataTime(dataTime);
|
||||||
///If the level is the first then it is the SUM level.
|
///If the level is the first then it is the SUM level.
|
||||||
if (j==0) {
|
if (j==0) {
|
||||||
MasterLevel masterLevel = levelDao.lookupMasterLevel(new MasterLevel("SFC"), true);
|
MasterLevel masterLevel = levelDao.lookupMasterLevel(new MasterLevel("SFC"), true);
|
||||||
|
@ -147,7 +144,7 @@ public class LmaDecoder {
|
||||||
level.setLevelonevalue(0);
|
level.setLevelonevalue(0);
|
||||||
level.setMasterLevel(masterLevel);
|
level.setMasterLevel(masterLevel);
|
||||||
level = levelDao.lookupLevel(level);
|
level = levelDao.lookupLevel(level);
|
||||||
records[count].setLevel(level);
|
record.setLevel(level);
|
||||||
} else {
|
} else {
|
||||||
MasterLevel masterLevel = levelDao.lookupMasterLevel(new MasterLevel("FHAG"), true);
|
MasterLevel masterLevel = levelDao.lookupMasterLevel(new MasterLevel("FHAG"), true);
|
||||||
masterLevel.setUnitString("m");
|
masterLevel.setUnitString("m");
|
||||||
|
@ -155,10 +152,10 @@ public class LmaDecoder {
|
||||||
level.setLevelonevalue((j+1)*1000.);
|
level.setLevelonevalue((j+1)*1000.);
|
||||||
level.setMasterLevel(masterLevel);
|
level.setMasterLevel(masterLevel);
|
||||||
level = levelDao.lookupLevel(level);
|
level = levelDao.lookupLevel(level);
|
||||||
records[count].setLevel(level);
|
record.setLevel(level);
|
||||||
}
|
}
|
||||||
records[count].setDatasetId(networkNameAtt.getStringValue());
|
record.setDatasetId(networkNameAtt.getStringValue());
|
||||||
records[count].setLocation(cov);
|
record.setLocation(cov);
|
||||||
String id = lmaVarsDict.getVarForStorage(v.getFullName());
|
String id = lmaVarsDict.getVarForStorage(v.getFullName());
|
||||||
Parameter param = null;
|
Parameter param = null;
|
||||||
try {
|
try {
|
||||||
|
@ -167,13 +164,13 @@ public class LmaDecoder {
|
||||||
|
|
||||||
}
|
}
|
||||||
if (param == null) {
|
if (param == null) {
|
||||||
statusHandler.info("Need to create new parameter"+id+","+lmaVarsDict.getVarNameForStorage(v.getFullName()));
|
statusHandler.info("Need to create new parameter "+id+","+lmaVarsDict.getVarNameForStorage(v.getFullName()));
|
||||||
param = new Parameter(id);
|
param = new Parameter(id);
|
||||||
param.setName(lmaVarsDict.getVarNameForStorage(v.getFullName()));
|
param.setName(lmaVarsDict.getVarNameForStorage(v.getFullName()));
|
||||||
|
|
||||||
}
|
}
|
||||||
records[count].setParameter(param);
|
record.setParameter(param);
|
||||||
records[count].setLocation(cov);
|
record.setLocation(cov);
|
||||||
|
|
||||||
//Need to transform the array to a float array, then flip the array.
|
//Need to transform the array to a float array, then flip the array.
|
||||||
Array array = v.read();
|
Array array = v.read();
|
||||||
|
@ -187,8 +184,8 @@ public class LmaDecoder {
|
||||||
}
|
}
|
||||||
///Need to flip the array to match how it is stored in AWIPS II versus netcdf.
|
///Need to flip the array to match how it is stored in AWIPS II versus netcdf.
|
||||||
ArraysUtil.flipHoriz(endArray, ny, nx);
|
ArraysUtil.flipHoriz(endArray, ny, nx);
|
||||||
records[count].setMessageData(endArray);
|
record.setMessageData(endArray);
|
||||||
++count;
|
recordsList.add(record);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -201,7 +198,13 @@ public class LmaDecoder {
|
||||||
} catch (Exception e){
|
} catch (Exception e){
|
||||||
statusHandler.warn("Problem closing the lma netcdf file: "+e);
|
statusHandler.warn("Problem closing the lma netcdf file: "+e);
|
||||||
}
|
}
|
||||||
return records;
|
if (recordsList.size() >0) {
|
||||||
|
GridRecord[] records = new GridRecord[recordsList.size()];
|
||||||
|
recordsList.toArray(records);
|
||||||
|
return records;
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,258 @@
|
||||||
|
<!-- NASA SPoRT -->
|
||||||
|
<colorMap>
|
||||||
|
<color r="0.00392156862745098" g="0.101960784313725" b="0.258823529411765" a="0" />
|
||||||
|
<color r="0.807843137254902" g="0.83921568627451" b="0.772549019607843" a="1" />
|
||||||
|
<color r="0.301960784313725" g="0.83921568627451" b="0.796078431372549" a="1" />
|
||||||
|
<color r="0" g="0.698039215686274" b="0.83921568627451" a="1" />
|
||||||
|
<color r="0.337254901960784" g="0.588235294117647" b="0.83921568627451" a="1" />
|
||||||
|
<color r="0.184313725490196" g="0.294117647058824" b="0.83921568627451" a="1" />
|
||||||
|
<color r="0.0156862745098039" g="0" b="1" a="1" />
|
||||||
|
<color r="0.384313725490196" g="0.0313725490196078" b="1" a="1" />
|
||||||
|
<color r="0.00392156862745098" g="0.270588235294118" b="0.00392156862745098" a="1" />
|
||||||
|
<color r="0.00392156862745098" g="0.470588235294118" b="0.00392156862745098" a="1" />
|
||||||
|
<color r="0.00784313725490196" g="0.67843137254902" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.00784313725490196" g="0.76078431372549" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.00784313725490196" g="0.792156862745098" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.00784313725490196" g="0.823529411764706" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.00784313725490196" g="0.890196078431372" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.00784313725490196" g="0.925490196078431" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.0117647058823529" g="1" b="0.0117647058823529" a="1" />
|
||||||
|
<color r="0.215686274509804" g="1" b="0.0117647058823529" a="1" />
|
||||||
|
<color r="0.623529411764706" g="1" b="0.0196078431372549" a="1" />
|
||||||
|
<color r="0.662745098039216" g="1" b="0.0196078431372549" a="1" />
|
||||||
|
<color r="0.705882352941177" g="1" b="0.0196078431372549" a="1" />
|
||||||
|
<color r="0.623529411764706" g="1" b="0.0196078431372549" a="1" />
|
||||||
|
<color r="0.694117647058824" g="1" b="0.0196078431372549" a="1" />
|
||||||
|
<color r="0.643137254901961" g="1" b="0.0313725490196078" a="1" />
|
||||||
|
<color r="0.682352941176471" g="0.972549019607843" b="0.0901960784313725" a="1" />
|
||||||
|
<color r="0.72156862745098" g="0.945098039215686" b="0.152941176470588" a="1" />
|
||||||
|
<color r="0.76078431372549" g="0.917647058823529" b="0.215686274509804" a="1" />
|
||||||
|
<color r="0.8" g="0.890196078431372" b="0.27843137254902" a="1" />
|
||||||
|
<color r="0.83921568627451" g="0.862745098039216" b="0.337254901960784" a="1" />
|
||||||
|
<color r="0.87843137254902" g="0.835294117647059" b="0.4" a="1" />
|
||||||
|
<color r="0.917647058823529" g="0.807843137254902" b="0.462745098039216" a="1" />
|
||||||
|
<color r="1" g="0.752941176470588" b="0.588235294117647" a="1" />
|
||||||
|
<color r="1" g="0.729411764705882" b="0.568627450980392" a="1" />
|
||||||
|
<color r="1" g="0.701960784313725" b="0.545098039215686" a="1" />
|
||||||
|
<color r="1" g="0.674509803921569" b="0.525490196078431" a="1" />
|
||||||
|
<color r="1" g="0.647058823529412" b="0.501960784313725" a="1" />
|
||||||
|
<color r="1" g="0.619607843137255" b="0.47843137254902" a="1" />
|
||||||
|
<color r="1" g="0.592156862745098" b="0.458823529411765" a="1" />
|
||||||
|
<color r="1" g="0.568627450980392" b="0.435294117647059" a="1" />
|
||||||
|
<color r="1" g="0.541176470588235" b="0.415686274509804" a="1" />
|
||||||
|
<color r="1" g="0.513725490196078" b="0.392156862745098" a="1" />
|
||||||
|
<color r="1" g="0.486274509803922" b="0.368627450980392" a="1" />
|
||||||
|
<color r="1" g="0.458823529411765" b="0.349019607843137" a="1" />
|
||||||
|
<color r="1" g="0.431372549019608" b="0.325490196078431" a="1" />
|
||||||
|
<color r="1" g="0.443137254901961" b="0.227450980392157" a="1" />
|
||||||
|
<color r="1" g="0.427450980392157" b="0.2" a="1" />
|
||||||
|
<color r="1" g="0.415686274509804" b="0.172549019607843" a="1" />
|
||||||
|
<color r="1" g="0.4" b="0.145098039215686" a="1" />
|
||||||
|
<color r="1" g="0.388235294117647" b="0.117647058823529" a="1" />
|
||||||
|
<color r="1" g="0.356862745098039" b="0.0588235294117647" a="1" />
|
||||||
|
<color r="1" g="0.356862745098039" b="0.0862745098039216" a="1" />
|
||||||
|
<color r="1" g="0.356862745098039" b="0.113725490196078" a="1" />
|
||||||
|
<color r="1" g="0.36078431372549" b="0.141176470588235" a="1" />
|
||||||
|
<color r="1" g="0.36078431372549" b="0.168627450980392" a="1" />
|
||||||
|
<color r="1" g="0.36078431372549" b="0.196078431372549" a="1" />
|
||||||
|
<color r="1" g="0.364705882352941" b="0.223529411764706" a="1" />
|
||||||
|
<color r="1" g="0.364705882352941" b="0.250980392156863" a="1" />
|
||||||
|
<color r="1" g="0.368627450980392" b="0.309803921568627" a="1" />
|
||||||
|
<color r="1" g="0.337254901960784" b="0.290196078431373" a="1" />
|
||||||
|
<color r="1" g="0.301960784313725" b="0.270588235294118" a="1" />
|
||||||
|
<color r="1" g="0.270588235294118" b="0.250980392156863" a="1" />
|
||||||
|
<color r="1" g="0.235294117647059" b="0.227450980392157" a="1" />
|
||||||
|
<color r="1" g="0.203921568627451" b="0.207843137254902" a="1" />
|
||||||
|
<color r="1" g="0.168627450980392" b="0.188235294117647" a="1" />
|
||||||
|
<color r="1" g="0.137254901960784" b="0.168627450980392" a="1" />
|
||||||
|
<color r="1" g="0.101960784313725" b="0.145098039215686" a="1" />
|
||||||
|
<color r="1" g="0.0705882352941176" b="0.125490196078431" a="1" />
|
||||||
|
<color r="1" g="0" b="0.0823529411764706" a="1" />
|
||||||
|
<color r="1" g="0" b="0.113725490196078" a="1" />
|
||||||
|
<color r="1" g="0" b="0.149019607843137" a="1" />
|
||||||
|
<color r="1" g="0" b="0.180392156862745" a="1" />
|
||||||
|
<color r="1" g="0" b="0.215686274509804" a="1" />
|
||||||
|
<color r="1" g="0" b="0.247058823529412" a="1" />
|
||||||
|
<color r="1" g="0" b="0.282352941176471" a="1" />
|
||||||
|
<color r="1" g="0" b="0.313725490196078" a="1" />
|
||||||
|
<color r="1" g="0" b="0.349019607843137" a="1" />
|
||||||
|
<color r="1" g="0" b="0.380392156862745" a="1" />
|
||||||
|
<color r="1" g="0" b="0.450980392156863" a="1" />
|
||||||
|
<color r="1" g="0" b="0.474509803921569" a="1" />
|
||||||
|
<color r="1" g="0" b="0.501960784313725" a="1" />
|
||||||
|
<color r="1" g="0" b="0.529411764705882" a="1" />
|
||||||
|
<color r="1" g="0" b="0.556862745098039" a="1" />
|
||||||
|
<color r="1" g="0" b="0.584313725490196" a="1" />
|
||||||
|
<color r="1" g="0" b="0.611764705882353" a="1" />
|
||||||
|
<color r="1" g="0" b="0.63921568627451" a="1" />
|
||||||
|
<color r="1" g="0" b="0.666666666666667" a="1" />
|
||||||
|
<color r="1" g="0" b="0.694117647058824" a="1" />
|
||||||
|
<color r="1" g="0" b="0.450980392156863" a="1" />
|
||||||
|
<color r="1" g="0" b="0.482352941176471" a="1" />
|
||||||
|
<color r="1" g="0" b="0.517647058823529" a="1" />
|
||||||
|
<color r="1" g="0" b="0.552941176470588" a="1" />
|
||||||
|
<color r="0.996078431372549" g="0" b="0.588235294117647" a="1" />
|
||||||
|
<color r="0.996078431372549" g="0" b="0.619607843137255" a="1" />
|
||||||
|
<color r="0.996078431372549" g="0" b="0.654901960784314" a="1" />
|
||||||
|
<color r="0.996078431372549" g="0" b="0.690196078431373" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0" b="0.725490196078431" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0" b="0.756862745098039" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0" b="0.792156862745098" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0" b="0.827450980392157" a="1" />
|
||||||
|
<color r="0.988235294117647" g="0" b="0.862745098039216" a="1" />
|
||||||
|
<color r="0.988235294117647" g="0" b="0.894117647058824" a="1" />
|
||||||
|
<color r="0.988235294117647" g="0" b="0.929411764705882" a="1" />
|
||||||
|
<color r="0.984313725490196" g="0" b="1" a="1" />
|
||||||
|
<color r="0.984313725490196" g="0.0196078431372549" b="1" a="1" />
|
||||||
|
<color r="0.984313725490196" g="0.0392156862745098" b="0.996078431372549" a="1" />
|
||||||
|
<color r="0.984313725490196" g="0.0627450980392157" b="0.996078431372549" a="1" />
|
||||||
|
<color r="0.984313725490196" g="0.0823529411764706" b="0.992156862745098" a="1" />
|
||||||
|
<color r="0.984313725490196" g="0.101960784313725" b="0.992156862745098" a="1" />
|
||||||
|
<color r="0.984313725490196" g="0.125490196078431" b="0.988235294117647" a="1" />
|
||||||
|
<color r="0.988235294117647" g="0.145098039215686" b="0.988235294117647" a="1" />
|
||||||
|
<color r="0.988235294117647" g="0.168627450980392" b="0.984313725490196" a="1" />
|
||||||
|
<color r="0.988235294117647" g="0.188235294117647" b="0.984313725490196" a="1" />
|
||||||
|
<color r="0.988235294117647" g="0.207843137254902" b="0.980392156862745" a="1" />
|
||||||
|
<color r="0.988235294117647" g="0.231372549019608" b="0.980392156862745" a="1" />
|
||||||
|
<color r="0.988235294117647" g="0.250980392156863" b="0.976470588235294" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0.274509803921569" b="0.976470588235294" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0.294117647058824" b="0.972549019607843" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0.313725490196078" b="0.972549019607843" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0.337254901960784" b="0.968627450980392" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0.356862745098039" b="0.968627450980392" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0.376470588235294" b="0.964705882352941" a="1" />
|
||||||
|
<color r="0.992156862745098" g="0.4" b="0.964705882352941" a="1" />
|
||||||
|
<color r="0.996078431372549" g="0.419607843137255" b="0.96078431372549" a="1" />
|
||||||
|
<color r="0.996078431372549" g="0.443137254901961" b="0.96078431372549" a="1" />
|
||||||
|
<color r="0.996078431372549" g="0.462745098039216" b="0.956862745098039" a="1" />
|
||||||
|
<color r="0.996078431372549" g="0.482352941176471" b="0.956862745098039" a="1" />
|
||||||
|
<color r="0.996078431372549" g="0.505882352941176" b="0.952941176470588" a="1" />
|
||||||
|
<color r="1" g="0.549019607843137" b="0.949019607843137" a="1" />
|
||||||
|
<color r="0.996078431372549" g="0.552941176470588" b="0.949019607843137" a="1" />
|
||||||
|
<color r="0.988235294117647" g="0.556862745098039" b="0.949019607843137" a="1" />
|
||||||
|
<color r="0.980392156862745" g="0.564705882352941" b="0.952941176470588" a="1" />
|
||||||
|
<color r="0.972549019607843" g="0.568627450980392" b="0.952941176470588" a="1" />
|
||||||
|
<color r="0.964705882352941" g="0.572549019607843" b="0.956862745098039" a="1" />
|
||||||
|
<color r="0.96078431372549" g="0.580392156862745" b="0.956862745098039" a="1" />
|
||||||
|
<color r="0.952941176470588" g="0.584313725490196" b="0.96078431372549" a="1" />
|
||||||
|
<color r="0.945098039215686" g="0.588235294117647" b="0.96078431372549" a="1" />
|
||||||
|
<color r="0.937254901960784" g="0.596078431372549" b="0.964705882352941" a="1" />
|
||||||
|
<color r="0.929411764705882" g="0.6" b="0.964705882352941" a="1" />
|
||||||
|
<color r="0.925490196078431" g="0.603921568627451" b="0.968627450980392" a="1" />
|
||||||
|
<color r="0.917647058823529" g="0.611764705882353" b="0.968627450980392" a="1" />
|
||||||
|
<color r="0.909803921568627" g="0.615686274509804" b="0.972549019607843" a="1" />
|
||||||
|
<color r="0.901960784313726" g="0.619607843137255" b="0.972549019607843" a="1" />
|
||||||
|
<color r="0.894117647058824" g="0.627450980392157" b="0.976470588235294" a="1" />
|
||||||
|
<color r="0.886274509803922" g="0.631372549019608" b="0.976470588235294" a="1" />
|
||||||
|
<color r="0.882352941176471" g="0.635294117647059" b="0.980392156862745" a="1" />
|
||||||
|
<color r="0.874509803921569" g="0.643137254901961" b="0.980392156862745" a="1" />
|
||||||
|
<color r="0.866666666666667" g="0.647058823529412" b="0.984313725490196" a="1" />
|
||||||
|
<color r="0.858823529411765" g="0.650980392156863" b="0.984313725490196" a="1" />
|
||||||
|
<color r="0.850980392156863" g="0.658823529411765" b="0.988235294117647" a="1" />
|
||||||
|
<color r="0.847058823529412" g="0.662745098039216" b="0.988235294117647" a="1" />
|
||||||
|
<color r="0.83921568627451" g="0.666666666666667" b="0.992156862745098" a="1" />
|
||||||
|
<color r="0.831372549019608" g="0.674509803921569" b="0.992156862745098" a="1" />
|
||||||
|
<color r="0.847058823529412" g="0.674509803921569" b="0.988235294117647" a="1" />
|
||||||
|
<color r="0.819607843137255" g="0.682352941176471" b="0.988235294117647" a="1" />
|
||||||
|
<color r="0.788235294117647" g="0.694117647058824" b="0.988235294117647" a="1" />
|
||||||
|
<color r="0.76078431372549" g="0.705882352941177" b="0.988235294117647" a="1" />
|
||||||
|
<color r="0.729411764705882" g="0.717647058823529" b="0.988235294117647" a="1" />
|
||||||
|
<color r="0.701960784313725" g="0.729411764705882" b="0.988235294117647" a="1" />
|
||||||
|
<color r="0.670588235294118" g="0.741176470588235" b="0.984313725490196" a="1" />
|
||||||
|
<color r="0.643137254901961" g="0.752941176470588" b="0.984313725490196" a="1" />
|
||||||
|
<color r="0.611764705882353" g="0.764705882352941" b="0.984313725490196" a="1" />
|
||||||
|
<color r="0.584313725490196" g="0.776470588235294" b="0.984313725490196" a="1" />
|
||||||
|
<color r="0.552941176470588" g="0.788235294117647" b="0.984313725490196" a="1" />
|
||||||
|
<color r="0.525490196078431" g="0.8" b="0.984313725490196" a="1" />
|
||||||
|
<color r="0.494117647058824" g="0.811764705882353" b="0.980392156862745" a="1" />
|
||||||
|
<color r="0.466666666666667" g="0.823529411764706" b="0.980392156862745" a="1" />
|
||||||
|
<color r="0.435294117647059" g="0.835294117647059" b="0.980392156862745" a="1" />
|
||||||
|
<color r="0.403921568627451" g="0.847058823529412" b="0.980392156862745" a="1" />
|
||||||
|
<color r="0.376470588235294" g="0.858823529411765" b="0.980392156862745" a="1" />
|
||||||
|
<color r="0.345098039215686" g="0.870588235294118" b="0.976470588235294" a="1" />
|
||||||
|
<color r="0.317647058823529" g="0.882352941176471" b="0.976470588235294" a="1" />
|
||||||
|
<color r="0.286274509803922" g="0.894117647058824" b="0.976470588235294" a="1" />
|
||||||
|
<color r="0.258823529411765" g="0.905882352941176" b="0.976470588235294" a="1" />
|
||||||
|
<color r="0.227450980392157" g="0.917647058823529" b="0.976470588235294" a="1" />
|
||||||
|
<color r="0.2" g="0.929411764705882" b="0.976470588235294" a="1" />
|
||||||
|
<color r="0.168627450980392" g="0.941176470588235" b="0.972549019607843" a="1" />
|
||||||
|
<color r="0.141176470588235" g="0.952941176470588" b="0.972549019607843" a="1" />
|
||||||
|
<color r="0.109803921568627" g="0.964705882352941" b="0.972549019607843" a="1" />
|
||||||
|
<color r="0.0823529411764706" g="0.976470588235294" b="0.972549019607843" a="1" />
|
||||||
|
<color r="0.0196078431372549" g="1" b="0.952941176470588" a="1" />
|
||||||
|
<color r="0.0509803921568627" g="1" b="0.949019607843137" a="1" />
|
||||||
|
<color r="0.0862745098039216" g="1" b="0.941176470588235" a="1" />
|
||||||
|
<color r="0.117647058823529" g="1" b="0.933333333333333" a="1" />
|
||||||
|
<color r="0.152941176470588" g="1" b="0.925490196078431" a="1" />
|
||||||
|
<color r="0.184313725490196" g="1" b="0.92156862745098" a="1" />
|
||||||
|
<color r="0.219607843137255" g="1" b="0.913725490196078" a="1" />
|
||||||
|
<color r="0.250980392156863" g="1" b="0.905882352941176" a="1" />
|
||||||
|
<color r="0.286274509803922" g="1" b="0.898039215686275" a="1" />
|
||||||
|
<color r="0.32156862745098" g="1" b="0.894117647058824" a="1" />
|
||||||
|
<color r="0.352941176470588" g="1" b="0.886274509803922" a="1" />
|
||||||
|
<color r="0.388235294117647" g="1" b="0.87843137254902" a="1" />
|
||||||
|
<color r="0.419607843137255" g="1" b="0.870588235294118" a="1" />
|
||||||
|
<color r="0.454901960784314" g="1" b="0.866666666666667" a="1" />
|
||||||
|
<color r="0.486274509803922" g="1" b="0.858823529411765" a="1" />
|
||||||
|
<color r="0.52156862745098" g="1" b="0.850980392156863" a="1" />
|
||||||
|
<color r="0.552941176470588" g="1" b="0.843137254901961" a="1" />
|
||||||
|
<color r="0.588235294117647" g="1" b="0.83921568627451" a="1" />
|
||||||
|
<color r="0.623529411764706" g="1" b="0.831372549019608" a="1" />
|
||||||
|
<color r="0.654901960784314" g="1" b="0.823529411764706" a="1" />
|
||||||
|
<color r="0.690196078431373" g="1" b="0.815686274509804" a="1" />
|
||||||
|
<color r="0.72156862745098" g="1" b="0.811764705882353" a="1" />
|
||||||
|
<color r="0.756862745098039" g="1" b="0.803921568627451" a="1" />
|
||||||
|
<color r="0.788235294117647" g="1" b="0.796078431372549" a="1" />
|
||||||
|
<color r="0.823529411764706" g="1" b="0.788235294117647" a="1" />
|
||||||
|
<color r="1" g="0.996078431372549" b="0.784313725490196" a="1" />
|
||||||
|
<color r="1" g="0.996078431372549" b="0.768627450980392" a="1" />
|
||||||
|
<color r="1" g="0.992156862745098" b="0.752941176470588" a="1" />
|
||||||
|
<color r="1" g="0.992156862745098" b="0.741176470588235" a="1" />
|
||||||
|
<color r="1" g="0.992156862745098" b="0.725490196078431" a="1" />
|
||||||
|
<color r="1" g="0.992156862745098" b="0.709803921568627" a="1" />
|
||||||
|
<color r="1" g="0.992156862745098" b="0.694117647058824" a="1" />
|
||||||
|
<color r="1" g="0.992156862745098" b="0.67843137254902" a="1" />
|
||||||
|
<color r="1" g="0.992156862745098" b="0.662745098039216" a="1" />
|
||||||
|
<color r="1" g="0.992156862745098" b="0.647058823529412" a="1" />
|
||||||
|
<color r="1" g="0.988235294117647" b="0.631372549019608" a="1" />
|
||||||
|
<color r="1" g="0.988235294117647" b="0.615686274509804" a="1" />
|
||||||
|
<color r="1" g="0.988235294117647" b="0.6" a="1" />
|
||||||
|
<color r="1" g="0.988235294117647" b="0.584313725490196" a="1" />
|
||||||
|
<color r="1" g="0.988235294117647" b="0.568627450980392" a="1" />
|
||||||
|
<color r="1" g="0.988235294117647" b="0.552941176470588" a="1" />
|
||||||
|
<color r="1" g="0.988235294117647" b="0.537254901960784" a="1" />
|
||||||
|
<color r="1" g="0.988235294117647" b="0.52156862745098" a="1" />
|
||||||
|
<color r="1" g="0.984313725490196" b="0.505882352941176" a="1" />
|
||||||
|
<color r="1" g="0.984313725490196" b="0.494117647058824" a="1" />
|
||||||
|
<color r="1" g="0.984313725490196" b="0.47843137254902" a="1" />
|
||||||
|
<color r="1" g="0.984313725490196" b="0.462745098039216" a="1" />
|
||||||
|
<color r="1" g="0.984313725490196" b="0.447058823529412" a="1" />
|
||||||
|
<color r="1" g="0.984313725490196" b="0.431372549019608" a="1" />
|
||||||
|
<color r="1" g="0.984313725490196" b="0.415686274509804" a="1" />
|
||||||
|
<color r="1" g="0.984313725490196" b="0.4" a="1" />
|
||||||
|
<color r="1" g="0.980392156862745" b="0.384313725490196" a="1" />
|
||||||
|
<color r="1" g="0.980392156862745" b="0.368627450980392" a="1" />
|
||||||
|
<color r="1" g="0.980392156862745" b="0.352941176470588" a="1" />
|
||||||
|
<color r="1" g="0.980392156862745" b="0.337254901960784" a="1" />
|
||||||
|
<color r="1" g="0.980392156862745" b="0.32156862745098" a="1" />
|
||||||
|
<color r="1" g="0.980392156862745" b="0.305882352941176" a="1" />
|
||||||
|
<color r="1" g="0.980392156862745" b="0.290196078431373" a="1" />
|
||||||
|
<color r="1" g="0.980392156862745" b="0.274509803921569" a="1" />
|
||||||
|
<color r="1" g="0.976470588235294" b="0.258823529411765" a="1" />
|
||||||
|
<color r="1" g="0.976470588235294" b="0.247058823529412" a="1" />
|
||||||
|
<color r="1" g="0.976470588235294" b="0.231372549019608" a="1" />
|
||||||
|
<color r="1" g="0.976470588235294" b="0.215686274509804" a="1" />
|
||||||
|
<color r="1" g="0.976470588235294" b="0.2" a="1" />
|
||||||
|
<color r="1" g="0.976470588235294" b="0.184313725490196" a="1" />
|
||||||
|
<color r="1" g="0.976470588235294" b="0.168627450980392" a="1" />
|
||||||
|
<color r="1" g="0.976470588235294" b="0.152941176470588" a="1" />
|
||||||
|
<color r="1" g="0.972549019607843" b="0.137254901960784" a="1" />
|
||||||
|
<color r="1" g="0.972549019607843" b="0.12156862745098" a="1" />
|
||||||
|
<color r="1" g="0.972549019607843" b="0.105882352941176" a="1" />
|
||||||
|
<color r="1" g="0.972549019607843" b="0.0901960784313725" a="1" />
|
||||||
|
<color r="1" g="0.972549019607843" b="0.0745098039215686" a="1" />
|
||||||
|
<color r="1" g="0.972549019607843" b="0.0588235294117647" a="1" />
|
||||||
|
<color r="1" g="0.972549019607843" b="0.0431372549019608" a="1" />
|
||||||
|
<color r="1" g="1" b="1" a="1" />
|
||||||
|
<color r="1" g="1" b="1" a="1" />
|
||||||
|
</colorMap>
|
|
@ -0,0 +1,261 @@
|
||||||
|
<!-- ====================
|
||||||
|
This is a colormap file that is read via JaXB to marshel the ColorMap class.
|
||||||
|
======================-->
|
||||||
|
<colorMap>
|
||||||
|
<color r="0" g="0" b="0" a="0" />
|
||||||
|
<color r="0" g="0" b="0" a="1" />
|
||||||
|
<color r="0" g="0" b="0" a="1" />
|
||||||
|
<color r="0.00784313725490196" g="0.850980392156863" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.133333333333333" g="0.850980392156863" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.258823529411765" g="0.850980392156863" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.384313725490196" g="0.850980392156863" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.509803921568627" g="0.854901960784314" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.635294117647059" g="0.854901960784314" b="0.00784313725490196" a="1" />
|
||||||
|
<color r="0.768627450980392" g="0.850980392156863" b="0.0156862745098039" a="1" />
|
||||||
|
<color r="0.784313725490196" g="0.737254901960784" b="0.0274509803921569" a="1" />
|
||||||
|
<color r="0.8" g="0.623529411764706" b="0.0431372549019608" a="1" />
|
||||||
|
<color r="0.819607843137255" g="0.505882352941176" b="0.0549019607843137" a="1" />
|
||||||
|
<color r="0.835294117647059" g="0.392156862745098" b="0.0705882352941176" a="1" />
|
||||||
|
<color r="0.854901960784314" g="0.274509803921569" b="0.0823529411764706" a="1" />
|
||||||
|
<color r="0.768627450980392" g="0.850980392156863" b="0.0156862745098039" a="1" />
|
||||||
|
<color r="0.745098039215686" g="0.819607843137255" b="0.0470588235294118" a="1" />
|
||||||
|
<color r="0.717647058823529" g="0.788235294117647" b="0.0784313725490196" a="1" />
|
||||||
|
<color r="0.690196078431373" g="0.756862745098039" b="0.109803921568627" a="1" />
|
||||||
|
<color r="0.662745098039216" g="0.725490196078431" b="0.145098039215686" a="1" />
|
||||||
|
<color r="0.635294117647059" g="0.694117647058824" b="0.176470588235294" a="1" />
|
||||||
|
<color r="0.607843137254902" g="0.662745098039216" b="0.207843137254902" a="1" />
|
||||||
|
<color r="0.580392156862745" g="0.631372549019608" b="0.23921568627451" a="1" />
|
||||||
|
<color r="0.552941176470588" g="0.6" b="0.274509803921569" a="1" />
|
||||||
|
<color r="0.525490196078431" g="0.568627450980392" b="0.305882352941176" a="1" />
|
||||||
|
<color r="0.498039215686275" g="0.537254901960784" b="0.337254901960784" a="1" />
|
||||||
|
<color r="0.470588235294118" g="0.505882352941176" b="0.368627450980392" a="1" />
|
||||||
|
<color r="0.443137254901961" g="0.474509803921569" b="0.403921568627451" a="1" />
|
||||||
|
<color r="0.415686274509804" g="0.443137254901961" b="0.435294117647059" a="1" />
|
||||||
|
<color r="0.388235294117647" g="0.411764705882353" b="0.466666666666667" a="1" />
|
||||||
|
<color r="0.36078431372549" g="0.380392156862745" b="0.498039215686275" a="1" />
|
||||||
|
<color r="0.333333333333333" g="0.349019607843137" b="0.533333333333333" a="1" />
|
||||||
|
<color r="0.305882352941176" g="0.317647058823529" b="0.564705882352941" a="1" />
|
||||||
|
<color r="0.27843137254902" g="0.286274509803922" b="0.596078431372549" a="1" />
|
||||||
|
<color r="0.250980392156863" g="0.254901960784314" b="0.627450980392157" a="1" />
|
||||||
|
<color r="0.223529411764706" g="0.223529411764706" b="0.662745098039216" a="1" />
|
||||||
|
<color r="0.196078431372549" g="0.192156862745098" b="0.694117647058824" a="1" />
|
||||||
|
<color r="0.168627450980392" g="0.16078431372549" b="0.725490196078431" a="1" />
|
||||||
|
<color r="0.141176470588235" g="0.129411764705882" b="0.756862745098039" a="1" />
|
||||||
|
<color r="0.113725490196078" g="0.0980392156862745" b="0.792156862745098" a="1" />
|
||||||
|
<color r="0.0862745098039216" g="0.0666666666666667" b="0.823529411764706" a="1" />
|
||||||
|
<color r="0.0549019607843137" g="0.0274509803921569" b="0.850980392156863" a="1" />
|
||||||
|
<color r="0.0705882352941176" g="0.0470588235294118" b="0.850980392156863" a="1" />
|
||||||
|
<color r="0.0862745098039216" g="0.0705882352941176" b="0.850980392156863" a="1" />
|
||||||
|
<color r="0.105882352941176" g="0.0941176470588235" b="0.850980392156863" a="1" />
|
||||||
|
<color r="0.12156862745098" g="0.113725490196078" b="0.854901960784314" a="1" />
|
||||||
|
<color r="0.141176470588235" g="0.137254901960784" b="0.854901960784314" a="1" />
|
||||||
|
<color r="0.156862745098039" g="0.16078431372549" b="0.854901960784314" a="1" />
|
||||||
|
<color r="0.176470588235294" g="0.180392156862745" b="0.854901960784314" a="1" />
|
||||||
|
<color r="0.192156862745098" g="0.203921568627451" b="0.858823529411765" a="1" />
|
||||||
|
<color r="0.211764705882353" g="0.227450980392157" b="0.858823529411765" a="1" />
|
||||||
|
<color r="0.227450980392157" g="0.247058823529412" b="0.858823529411765" a="1" />
|
||||||
|
<color r="0.247058823529412" g="0.270588235294118" b="0.858823529411765" a="1" />
|
||||||
|
<color r="0.262745098039216" g="0.294117647058824" b="0.862745098039216" a="1" />
|
||||||
|
<color r="0.282352941176471" g="0.313725490196078" b="0.862745098039216" a="1" />
|
||||||
|
<color r="0.298039215686275" g="0.337254901960784" b="0.862745098039216" a="1" />
|
||||||
|
<color r="0.317647058823529" g="0.36078431372549" b="0.862745098039216" a="1" />
|
||||||
|
<color r="0.333333333333333" g="0.380392156862745" b="0.866666666666667" a="1" />
|
||||||
|
<color r="0.352941176470588" g="0.403921568627451" b="0.866666666666667" a="1" />
|
||||||
|
<color r="0.368627450980392" g="0.427450980392157" b="0.866666666666667" a="1" />
|
||||||
|
<color r="0.388235294117647" g="0.450980392156863" b="0.870588235294118" a="1" />
|
||||||
|
<color r="0.403921568627451" g="0.470588235294118" b="0.870588235294118" a="1" />
|
||||||
|
<color r="0.419607843137255" g="0.494117647058824" b="0.870588235294118" a="1" />
|
||||||
|
<color r="0.43921568627451" g="0.517647058823529" b="0.870588235294118" a="1" />
|
||||||
|
<color r="0.454901960784314" g="0.537254901960784" b="0.874509803921569" a="1" />
|
||||||
|
<color r="0.474509803921569" g="0.56078431372549" b="0.874509803921569" a="1" />
|
||||||
|
<color r="0.490196078431373" g="0.584313725490196" b="0.874509803921569" a="1" />
|
||||||
|
<color r="0.509803921568627" g="0.603921568627451" b="0.874509803921569" a="1" />
|
||||||
|
<color r="0.525490196078431" g="0.627450980392157" b="0.87843137254902" a="1" />
|
||||||
|
<color r="0.545098039215686" g="0.650980392156863" b="0.87843137254902" a="1" />
|
||||||
|
<color r="0.56078431372549" g="0.670588235294118" b="0.87843137254902" a="1" />
|
||||||
|
<color r="0.580392156862745" g="0.694117647058824" b="0.87843137254902" a="1" />
|
||||||
|
<color r="0.596078431372549" g="0.717647058823529" b="0.882352941176471" a="1" />
|
||||||
|
<color r="0.615686274509804" g="0.737254901960784" b="0.882352941176471" a="1" />
|
||||||
|
<color r="0.631372549019608" g="0.76078431372549" b="0.882352941176471" a="1" />
|
||||||
|
<color r="0.650980392156863" g="0.784313725490196" b="0.882352941176471" a="1" />
|
||||||
|
<color r="0.666666666666667" g="0.803921568627451" b="0.886274509803922" a="1" />
|
||||||
|
<color r="0.686274509803922" g="0.827450980392157" b="0.886274509803922" a="1" />
|
||||||
|
<color r="0.674509803921569" g="0.803921568627451" b="0.890196078431372" a="1" />
|
||||||
|
<color r="0.674509803921569" g="0.8" b="0.890196078431372" a="1" />
|
||||||
|
<color r="0.674509803921569" g="0.796078431372549" b="0.890196078431372" a="1" />
|
||||||
|
<color r="0.674509803921569" g="0.792156862745098" b="0.886274509803922" a="1" />
|
||||||
|
<color r="0.67843137254902" g="0.788235294117647" b="0.886274509803922" a="1" />
|
||||||
|
<color r="0.67843137254902" g="0.784313725490196" b="0.882352941176471" a="1" />
|
||||||
|
<color r="0.67843137254902" g="0.780392156862745" b="0.882352941176471" a="1" />
|
||||||
|
<color r="0.682352941176471" g="0.772549019607843" b="0.87843137254902" a="1" />
|
||||||
|
<color r="0.682352941176471" g="0.768627450980392" b="0.87843137254902" a="1" />
|
||||||
|
<color r="0.682352941176471" g="0.764705882352941" b="0.874509803921569" a="1" />
|
||||||
|
<color r="0.686274509803922" g="0.76078431372549" b="0.874509803921569" a="1" />
|
||||||
|
<color r="0.686274509803922" g="0.756862745098039" b="0.874509803921569" a="1" />
|
||||||
|
<color r="0.686274509803922" g="0.752941176470588" b="0.870588235294118" a="1" />
|
||||||
|
<color r="0.690196078431373" g="0.745098039215686" b="0.870588235294118" a="1" />
|
||||||
|
<color r="0.690196078431373" g="0.741176470588235" b="0.866666666666667" a="1" />
|
||||||
|
<color r="0.690196078431373" g="0.737254901960784" b="0.866666666666667" a="1" />
|
||||||
|
<color r="0.690196078431373" g="0.733333333333333" b="0.862745098039216" a="1" />
|
||||||
|
<color r="0.694117647058824" g="0.729411764705882" b="0.862745098039216" a="1" />
|
||||||
|
<color r="0.694117647058824" g="0.725490196078431" b="0.858823529411765" a="1" />
|
||||||
|
<color r="0.694117647058824" g="0.717647058823529" b="0.858823529411765" a="1" />
|
||||||
|
<color r="0.698039215686274" g="0.713725490196078" b="0.858823529411765" a="1" />
|
||||||
|
<color r="0.698039215686274" g="0.709803921568627" b="0.854901960784314" a="1" />
|
||||||
|
<color r="0.698039215686274" g="0.705882352941177" b="0.854901960784314" a="1" />
|
||||||
|
<color r="0.701960784313725" g="0.701960784313725" b="0.850980392156863" a="1" />
|
||||||
|
<color r="0.701960784313725" g="0.698039215686274" b="0.850980392156863" a="1" />
|
||||||
|
<color r="0.701960784313725" g="0.694117647058824" b="0.847058823529412" a="1" />
|
||||||
|
<color r="0.705882352941177" g="0.686274509803922" b="0.847058823529412" a="1" />
|
||||||
|
<color r="0.705882352941177" g="0.682352941176471" b="0.843137254901961" a="1" />
|
||||||
|
<color r="0.705882352941177" g="0.67843137254902" b="0.843137254901961" a="1" />
|
||||||
|
<color r="0.709803921568627" g="0.674509803921569" b="0.843137254901961" a="1" />
|
||||||
|
<color r="0.709803921568627" g="0.670588235294118" b="0.83921568627451" a="1" />
|
||||||
|
<color r="0.709803921568627" g="0.666666666666667" b="0.83921568627451" a="1" />
|
||||||
|
<color r="0.709803921568627" g="0.658823529411765" b="0.835294117647059" a="1" />
|
||||||
|
<color r="0.713725490196078" g="0.654901960784314" b="0.835294117647059" a="1" />
|
||||||
|
<color r="0.713725490196078" g="0.650980392156863" b="0.831372549019608" a="1" />
|
||||||
|
<color r="0.713725490196078" g="0.647058823529412" b="0.831372549019608" a="1" />
|
||||||
|
<color r="0.717647058823529" g="0.643137254901961" b="0.827450980392157" a="1" />
|
||||||
|
<color r="0.717647058823529" g="0.63921568627451" b="0.827450980392157" a="1" />
|
||||||
|
<color r="0.717647058823529" g="0.631372549019608" b="0.827450980392157" a="1" />
|
||||||
|
<color r="0.72156862745098" g="0.627450980392157" b="0.823529411764706" a="1" />
|
||||||
|
<color r="0.72156862745098" g="0.623529411764706" b="0.823529411764706" a="1" />
|
||||||
|
<color r="0.72156862745098" g="0.619607843137255" b="0.819607843137255" a="1" />
|
||||||
|
<color r="0.725490196078431" g="0.615686274509804" b="0.819607843137255" a="1" />
|
||||||
|
<color r="0.725490196078431" g="0.611764705882353" b="0.815686274509804" a="1" />
|
||||||
|
<color r="0.725490196078431" g="0.607843137254902" b="0.815686274509804" a="1" />
|
||||||
|
<color r="0.725490196078431" g="0.6" b="0.811764705882353" a="1" />
|
||||||
|
<color r="0.729411764705882" g="0.596078431372549" b="0.811764705882353" a="1" />
|
||||||
|
<color r="0.729411764705882" g="0.592156862745098" b="0.811764705882353" a="1" />
|
||||||
|
<color r="0.729411764705882" g="0.588235294117647" b="0.807843137254902" a="1" />
|
||||||
|
<color r="0.733333333333333" g="0.584313725490196" b="0.807843137254902" a="1" />
|
||||||
|
<color r="0.733333333333333" g="0.580392156862745" b="0.803921568627451" a="1" />
|
||||||
|
<color r="0.733333333333333" g="0.572549019607843" b="0.803921568627451" a="1" />
|
||||||
|
<color r="0.737254901960784" g="0.568627450980392" b="0.8" a="1" />
|
||||||
|
<color r="0.737254901960784" g="0.564705882352941" b="0.8" a="1" />
|
||||||
|
<color r="0.737254901960784" g="0.56078431372549" b="0.796078431372549" a="1" />
|
||||||
|
<color r="0.741176470588235" g="0.556862745098039" b="0.796078431372549" a="1" />
|
||||||
|
<color r="0.741176470588235" g="0.552941176470588" b="0.796078431372549" a="1" />
|
||||||
|
<color r="0.741176470588235" g="0.545098039215686" b="0.792156862745098" a="1" />
|
||||||
|
<color r="0.745098039215686" g="0.541176470588235" b="0.792156862745098" a="1" />
|
||||||
|
<color r="0.745098039215686" g="0.537254901960784" b="0.788235294117647" a="1" />
|
||||||
|
<color r="0.745098039215686" g="0.533333333333333" b="0.788235294117647" a="1" />
|
||||||
|
<color r="0.745098039215686" g="0.529411764705882" b="0.784313725490196" a="1" />
|
||||||
|
<color r="0.749019607843137" g="0.525490196078431" b="0.784313725490196" a="1" />
|
||||||
|
<color r="0.749019607843137" g="0.52156862745098" b="0.780392156862745" a="1" />
|
||||||
|
<color r="0.749019607843137" g="0.513725490196078" b="0.780392156862745" a="1" />
|
||||||
|
<color r="0.752941176470588" g="0.509803921568627" b="0.776470588235294" a="1" />
|
||||||
|
<color r="0.752941176470588" g="0.505882352941176" b="0.776470588235294" a="1" />
|
||||||
|
<color r="0.752941176470588" g="0.501960784313725" b="0.776470588235294" a="1" />
|
||||||
|
<color r="0.756862745098039" g="0.498039215686275" b="0.772549019607843" a="1" />
|
||||||
|
<color r="0.756862745098039" g="0.494117647058824" b="0.772549019607843" a="1" />
|
||||||
|
<color r="0.756862745098039" g="0.486274509803922" b="0.768627450980392" a="1" />
|
||||||
|
<color r="0.76078431372549" g="0.482352941176471" b="0.768627450980392" a="1" />
|
||||||
|
<color r="0.76078431372549" g="0.47843137254902" b="0.764705882352941" a="1" />
|
||||||
|
<color r="0.76078431372549" g="0.474509803921569" b="0.764705882352941" a="1" />
|
||||||
|
<color r="0.76078431372549" g="0.470588235294118" b="0.76078431372549" a="1" />
|
||||||
|
<color r="0.764705882352941" g="0.466666666666667" b="0.76078431372549" a="1" />
|
||||||
|
<color r="0.764705882352941" g="0.458823529411765" b="0.76078431372549" a="1" />
|
||||||
|
<color r="0.764705882352941" g="0.454901960784314" b="0.756862745098039" a="1" />
|
||||||
|
<color r="0.768627450980392" g="0.450980392156863" b="0.756862745098039" a="1" />
|
||||||
|
<color r="0.768627450980392" g="0.447058823529412" b="0.752941176470588" a="1" />
|
||||||
|
<color r="0.768627450980392" g="0.443137254901961" b="0.752941176470588" a="1" />
|
||||||
|
<color r="0.772549019607843" g="0.43921568627451" b="0.749019607843137" a="1" />
|
||||||
|
<color r="0.772549019607843" g="0.435294117647059" b="0.749019607843137" a="1" />
|
||||||
|
<color r="0.772549019607843" g="0.427450980392157" b="0.745098039215686" a="1" />
|
||||||
|
<color r="0.776470588235294" g="0.423529411764706" b="0.745098039215686" a="1" />
|
||||||
|
<color r="0.776470588235294" g="0.419607843137255" b="0.745098039215686" a="1" />
|
||||||
|
<color r="0.776470588235294" g="0.415686274509804" b="0.741176470588235" a="1" />
|
||||||
|
<color r="0.780392156862745" g="0.411764705882353" b="0.741176470588235" a="1" />
|
||||||
|
<color r="0.780392156862745" g="0.407843137254902" b="0.737254901960784" a="1" />
|
||||||
|
<color r="0.780392156862745" g="0.4" b="0.737254901960784" a="1" />
|
||||||
|
<color r="0.780392156862745" g="0.396078431372549" b="0.733333333333333" a="1" />
|
||||||
|
<color r="0.784313725490196" g="0.392156862745098" b="0.733333333333333" a="1" />
|
||||||
|
<color r="0.784313725490196" g="0.388235294117647" b="0.729411764705882" a="1" />
|
||||||
|
<color r="0.784313725490196" g="0.384313725490196" b="0.729411764705882" a="1" />
|
||||||
|
<color r="0.788235294117647" g="0.380392156862745" b="0.729411764705882" a="1" />
|
||||||
|
<color r="0.788235294117647" g="0.372549019607843" b="0.725490196078431" a="1" />
|
||||||
|
<color r="0.788235294117647" g="0.368627450980392" b="0.725490196078431" a="1" />
|
||||||
|
<color r="0.792156862745098" g="0.364705882352941" b="0.72156862745098" a="1" />
|
||||||
|
<color r="0.792156862745098" g="0.36078431372549" b="0.72156862745098" a="1" />
|
||||||
|
<color r="0.792156862745098" g="0.356862745098039" b="0.717647058823529" a="1" />
|
||||||
|
<color r="0.796078431372549" g="0.352941176470588" b="0.717647058823529" a="1" />
|
||||||
|
<color r="0.796078431372549" g="0.349019607843137" b="0.713725490196078" a="1" />
|
||||||
|
<color r="0.796078431372549" g="0.341176470588235" b="0.713725490196078" a="1" />
|
||||||
|
<color r="0.8" g="0.337254901960784" b="0.713725490196078" a="1" />
|
||||||
|
<color r="0.8" g="0.333333333333333" b="0.709803921568627" a="1" />
|
||||||
|
<color r="0.8" g="0.329411764705882" b="0.709803921568627" a="1" />
|
||||||
|
<color r="0.8" g="0.325490196078431" b="0.705882352941177" a="1" />
|
||||||
|
<color r="0.803921568627451" g="0.32156862745098" b="0.705882352941177" a="1" />
|
||||||
|
<color r="0.803921568627451" g="0.313725490196078" b="0.701960784313725" a="1" />
|
||||||
|
<color r="0.803921568627451" g="0.309803921568627" b="0.701960784313725" a="1" />
|
||||||
|
<color r="0.807843137254902" g="0.305882352941176" b="0.698039215686274" a="1" />
|
||||||
|
<color r="0.807843137254902" g="0.301960784313725" b="0.698039215686274" a="1" />
|
||||||
|
<color r="0.807843137254902" g="0.298039215686275" b="0.698039215686274" a="1" />
|
||||||
|
<color r="0.811764705882353" g="0.294117647058824" b="0.694117647058824" a="1" />
|
||||||
|
<color r="0.811764705882353" g="0.286274509803922" b="0.694117647058824" a="1" />
|
||||||
|
<color r="0.811764705882353" g="0.282352941176471" b="0.690196078431373" a="1" />
|
||||||
|
<color r="0.815686274509804" g="0.27843137254902" b="0.690196078431373" a="1" />
|
||||||
|
<color r="0.815686274509804" g="0.274509803921569" b="0.686274509803922" a="1" />
|
||||||
|
<color r="0.815686274509804" g="0.270588235294118" b="0.686274509803922" a="1" />
|
||||||
|
<color r="0.815686274509804" g="0.266666666666667" b="0.682352941176471" a="1" />
|
||||||
|
<color r="0.819607843137255" g="0.262745098039216" b="0.682352941176471" a="1" />
|
||||||
|
<color r="0.819607843137255" g="0.254901960784314" b="0.67843137254902" a="1" />
|
||||||
|
<color r="0.819607843137255" g="0.250980392156863" b="0.67843137254902" a="1" />
|
||||||
|
<color r="0.823529411764706" g="0.247058823529412" b="0.67843137254902" a="1" />
|
||||||
|
<color r="0.823529411764706" g="0.243137254901961" b="0.674509803921569" a="1" />
|
||||||
|
<color r="0.823529411764706" g="0.23921568627451" b="0.674509803921569" a="1" />
|
||||||
|
<color r="0.827450980392157" g="0.235294117647059" b="0.670588235294118" a="1" />
|
||||||
|
<color r="0.827450980392157" g="0.227450980392157" b="0.670588235294118" a="1" />
|
||||||
|
<color r="0.827450980392157" g="0.223529411764706" b="0.666666666666667" a="1" />
|
||||||
|
<color r="0.831372549019608" g="0.219607843137255" b="0.666666666666667" a="1" />
|
||||||
|
<color r="0.831372549019608" g="0.215686274509804" b="0.662745098039216" a="1" />
|
||||||
|
<color r="0.831372549019608" g="0.211764705882353" b="0.662745098039216" a="1" />
|
||||||
|
<color r="0.835294117647059" g="0.207843137254902" b="0.662745098039216" a="1" />
|
||||||
|
<color r="0.835294117647059" g="0.2" b="0.658823529411765" a="1" />
|
||||||
|
<color r="0.835294117647059" g="0.196078431372549" b="0.658823529411765" a="1" />
|
||||||
|
<color r="0.835294117647059" g="0.192156862745098" b="0.654901960784314" a="1" />
|
||||||
|
<color r="0.83921568627451" g="0.188235294117647" b="0.654901960784314" a="1" />
|
||||||
|
<color r="0.83921568627451" g="0.184313725490196" b="0.650980392156863" a="1" />
|
||||||
|
<color r="0.83921568627451" g="0.180392156862745" b="0.650980392156863" a="1" />
|
||||||
|
<color r="0.843137254901961" g="0.176470588235294" b="0.647058823529412" a="1" />
|
||||||
|
<color r="0.843137254901961" g="0.168627450980392" b="0.647058823529412" a="1" />
|
||||||
|
<color r="0.843137254901961" g="0.164705882352941" b="0.647058823529412" a="1" />
|
||||||
|
<color r="0.847058823529412" g="0.16078431372549" b="0.643137254901961" a="1" />
|
||||||
|
<color r="0.847058823529412" g="0.156862745098039" b="0.643137254901961" a="1" />
|
||||||
|
<color r="0.847058823529412" g="0.152941176470588" b="0.63921568627451" a="1" />
|
||||||
|
<color r="0.850980392156863" g="0.149019607843137" b="0.63921568627451" a="1" />
|
||||||
|
<color r="0.850980392156863" g="0.141176470588235" b="0.635294117647059" a="1" />
|
||||||
|
<color r="0.850980392156863" g="0.137254901960784" b="0.635294117647059" a="1" />
|
||||||
|
<color r="0.850980392156863" g="0.133333333333333" b="0.631372549019608" a="1" />
|
||||||
|
<color r="0.854901960784314" g="0.129411764705882" b="0.631372549019608" a="1" />
|
||||||
|
<color r="0.854901960784314" g="0.125490196078431" b="0.631372549019608" a="1" />
|
||||||
|
<color r="0.854901960784314" g="0.12156862745098" b="0.627450980392157" a="1" />
|
||||||
|
<color r="0.858823529411765" g="0.113725490196078" b="0.627450980392157" a="1" />
|
||||||
|
<color r="0.858823529411765" g="0.109803921568627" b="0.623529411764706" a="1" />
|
||||||
|
<color r="0.858823529411765" g="0.105882352941176" b="0.623529411764706" a="1" />
|
||||||
|
<color r="0.862745098039216" g="0.101960784313725" b="0.619607843137255" a="1" />
|
||||||
|
<color r="0.862745098039216" g="0.0980392156862745" b="0.619607843137255" a="1" />
|
||||||
|
<color r="0.862745098039216" g="0.0941176470588235" b="0.615686274509804" a="1" />
|
||||||
|
<color r="0.866666666666667" g="0.0901960784313725" b="0.615686274509804" a="1" />
|
||||||
|
<color r="0.866666666666667" g="0.0823529411764706" b="0.615686274509804" a="1" />
|
||||||
|
<color r="0.866666666666667" g="0.0784313725490196" b="0.611764705882353" a="1" />
|
||||||
|
<color r="0.870588235294118" g="0.0745098039215686" b="0.611764705882353" a="1" />
|
||||||
|
<color r="0.870588235294118" g="0.0705882352941176" b="0.607843137254902" a="1" />
|
||||||
|
<color r="0.870588235294118" g="0.0666666666666667" b="0.607843137254902" a="1" />
|
||||||
|
<color r="0.870588235294118" g="0.0627450980392157" b="0.603921568627451" a="1" />
|
||||||
|
<color r="0.874509803921569" g="0.0549019607843137" b="0.603921568627451" a="1" />
|
||||||
|
<color r="0.874509803921569" g="0.0509803921568627" b="0.6" a="1" />
|
||||||
|
<color r="0.874509803921569" g="0.0470588235294118" b="0.6" a="1" />
|
||||||
|
<color r="0.87843137254902" g="0.0431372549019608" b="0.6" a="1" />
|
||||||
|
<color r="0.87843137254902" g="0.0392156862745098" b="0.596078431372549" a="1" />
|
||||||
|
<color r="0.87843137254902" g="0.0352941176470588" b="0.596078431372549" a="1" />
|
||||||
|
<color r="0.882352941176471" g="0.0274509803921569" b="0.592156862745098" a="1" />
|
||||||
|
<color r="0.882352941176471" g="0.0235294117647059" b="0.592156862745098" a="1" />
|
||||||
|
<color r="0.882352941176471" g="0.0196078431372549" b="0.588235294117647" a="1" />
|
||||||
|
<color r="0.886274509803922" g="0.0156862745098039" b="0.588235294117647" a="1" />
|
||||||
|
<color r="0.886274509803922" g="0.0117647058823529" b="0.584313725490196" a="1" />
|
||||||
|
<color r="0.886274509803922" g="0.00784313725490196" b="0.584313725490196" a="1" />
|
||||||
|
<color r="1" g="1" b="1" a="1" />
|
||||||
|
</colorMap>
|
|
@ -3,9 +3,9 @@ This is a colormap file that is read via JaXB to marshel the ColorMap class.
|
||||||
======================-->
|
======================-->
|
||||||
<colorMap>
|
<colorMap>
|
||||||
<color r="0" g="0" b="0" a="0" />
|
<color r="0" g="0" b="0" a="0" />
|
||||||
<color r="0" g="0" b="0" a="0" />
|
<color r="1" g="0.98" b="1" a="1" />
|
||||||
<color r="0" g="0" b="0" a="0" />
|
<color r="1" g="0.97" b="1" a="1" />
|
||||||
<color r="0" g="0" b="0" a="0" />
|
<color r="1" g="0.96" b="1" a="1" />
|
||||||
<color r="1" g="0.952941176470588" b="1" a="1" />
|
<color r="1" g="0.952941176470588" b="1" a="1" />
|
||||||
<color r="1" g="0.933333333333333" b="1" a="1" />
|
<color r="1" g="0.933333333333333" b="1" a="1" />
|
||||||
<color r="1" g="0.917647058823529" b="1" a="1" />
|
<color r="1" g="0.917647058823529" b="1" a="1" />
|
|
@ -9,7 +9,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Source Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Source Density" id="lma">
|
||||||
<dataURI>/grid/NALMA/%/%/lmamsd</dataURI>
|
<dataURI>/grid/NALMA/%/%/lmamsd</dataURI>
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamsd"/>
|
<substitute key="productType" value="lmamsd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/NALMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/NALMA/%/%/lmafed</dataURI>
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/NALMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/NALMA/%/%/lmafid</dataURI>
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/NALMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/NALMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Rate of Change" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Rate of Change" id="lma">
|
||||||
<dataURI>/grid/NALMA/%/%/lmaroc</dataURI>
|
<dataURI>/grid/NALMA/%/%/lmaroc</dataURI>
|
||||||
|
@ -49,7 +49,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmaroc"/>
|
<substitute key="productType" value="lmaroc"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="subMenu" menuText="DCLMA">
|
<contribute xsi:type="subMenu" menuText="DCLMA">
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/DCLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/DCLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -67,7 +67,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/DCLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/DCLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -75,7 +75,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/DCLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/DCLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -94,7 +94,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/KLDAR/%/%/lmafed</dataURI>
|
<dataURI>/grid/KLDAR/%/%/lmafed</dataURI>
|
||||||
|
@ -102,7 +102,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/KLDAR/%/%/lmafid</dataURI>
|
<dataURI>/grid/KLDAR/%/%/lmafid</dataURI>
|
||||||
|
@ -110,7 +110,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/KLDAR/%/%/lmamfd</dataURI>
|
<dataURI>/grid/KLDAR/%/%/lmamfd</dataURI>
|
||||||
|
@ -118,7 +118,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -129,7 +129,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/OKLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/OKLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -137,7 +137,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/OKLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/OKLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -145,7 +145,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/OKLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/OKLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -153,7 +153,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/COLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/COLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -172,7 +172,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/COLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/COLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -180,7 +180,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/COLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/COLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -188,7 +188,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -199,7 +199,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/HGLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/HGLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -207,7 +207,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/HGLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/HGLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -215,7 +215,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/HGLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/HGLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -223,7 +223,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -234,7 +234,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/WTLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/WTLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -242,7 +242,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/WTLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/WTLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -250,7 +250,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/WTLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/WTLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -258,7 +258,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -269,7 +269,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/CFLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/CFLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -277,7 +277,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/CFLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/CFLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -285,7 +285,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/CFLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/CFLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -293,7 +293,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -304,7 +304,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/LLLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/LLLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -312,7 +312,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/LLLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/LLLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -320,7 +320,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/LLLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/LLLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -328,7 +328,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -340,7 +340,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/KSCLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/KSCLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -348,7 +348,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/KSCLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/KSCLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -356,7 +356,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/KSCLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/KSCLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -364,7 +364,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -375,7 +375,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/NGLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/NGLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -383,7 +383,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/NGLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/NGLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -391,7 +391,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/NGLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/NGLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -399,7 +399,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -410,7 +410,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/ONLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/ONLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -418,7 +418,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/ONLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/ONLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -426,7 +426,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/ONLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/ONLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -434,7 +434,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -445,7 +445,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/WILMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/WILMA/%/%/lmafed</dataURI>
|
||||||
|
@ -453,7 +453,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/WILMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/WILMA/%/%/lmafid</dataURI>
|
||||||
|
@ -461,7 +461,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/WILMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/WILMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -469,7 +469,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -480,7 +480,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasd"/>
|
<substitute key="productType" value="lmasd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Extent Density" id="lma">
|
||||||
<dataURI>/grid/WSLMA/%/%/lmafed</dataURI>
|
<dataURI>/grid/WSLMA/%/%/lmafed</dataURI>
|
||||||
|
@ -488,7 +488,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/WSLMA/%/%/lmafid</dataURI>
|
<dataURI>/grid/WSLMA/%/%/lmafid</dataURI>
|
||||||
|
@ -496,7 +496,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/WSLMA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/WSLMA/%/%/lmamfd</dataURI>
|
||||||
|
@ -504,7 +504,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -517,7 +517,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/PGNA/%/%/lmafid</dataURI>
|
<dataURI>/grid/PGNA/%/%/lmafid</dataURI>
|
||||||
|
@ -525,7 +525,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
||||||
<dataURI>/grid/PGNA/%/%/lmamfd</dataURI>
|
<dataURI>/grid/PGNA/%/%/lmamfd</dataURI>
|
||||||
|
@ -533,7 +533,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
||||||
<dataURI>/grid/PGNA/%/%/lmasum</dataURI>
|
<dataURI>/grid/PGNA/%/%/lmasum</dataURI>
|
||||||
|
@ -541,7 +541,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasum"/>
|
<substitute key="productType" value="lmasum"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -552,7 +552,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/PGDC/%/%/lmafid</dataURI>
|
<dataURI>/grid/PGDC/%/%/lmafid</dataURI>
|
||||||
|
@ -560,7 +560,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
||||||
<dataURI>/grid/PGDC/%/%/lmamfd</dataURI>
|
<dataURI>/grid/PGDC/%/%/lmamfd</dataURI>
|
||||||
|
@ -568,7 +568,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
||||||
<dataURI>/grid/PGDC/%/%/lmasum</dataURI>
|
<dataURI>/grid/PGDC/%/%/lmasum</dataURI>
|
||||||
|
@ -576,7 +576,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasum"/>
|
<substitute key="productType" value="lmasum"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -587,7 +587,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/PGSC/%/%/lmafid</dataURI>
|
<dataURI>/grid/PGSC/%/%/lmafid</dataURI>
|
||||||
|
@ -595,7 +595,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
||||||
<dataURI>/grid/PGSC/%/%/lmamfd</dataURI>
|
<dataURI>/grid/PGSC/%/%/lmamfd</dataURI>
|
||||||
|
@ -603,7 +603,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
||||||
<dataURI>/grid/PGSC/%/%/lmasum</dataURI>
|
<dataURI>/grid/PGSC/%/%/lmasum</dataURI>
|
||||||
|
@ -611,7 +611,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasum"/>
|
<substitute key="productType" value="lmasum"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -622,7 +622,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/PGOK/%/%/lmafid</dataURI>
|
<dataURI>/grid/PGOK/%/%/lmafid</dataURI>
|
||||||
|
@ -630,7 +630,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
||||||
<dataURI>/grid/PGOK/%/%/lmamfd</dataURI>
|
<dataURI>/grid/PGOK/%/%/lmamfd</dataURI>
|
||||||
|
@ -638,7 +638,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
||||||
<dataURI>/grid/PGOK/%/%/lmasum</dataURI>
|
<dataURI>/grid/PGOK/%/%/lmasum</dataURI>
|
||||||
|
@ -646,7 +646,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasum"/>
|
<substitute key="productType" value="lmasum"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -657,7 +657,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/PGCO/%/%/lmafid</dataURI>
|
<dataURI>/grid/PGCO/%/%/lmafid</dataURI>
|
||||||
|
@ -665,7 +665,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
||||||
<dataURI>/grid/PGCO/%/%/lmamfd</dataURI>
|
<dataURI>/grid/PGCO/%/%/lmamfd</dataURI>
|
||||||
|
@ -673,7 +673,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
||||||
<dataURI>/grid/PGCO/%/%/lmasum</dataURI>
|
<dataURI>/grid/PGCO/%/%/lmasum</dataURI>
|
||||||
|
@ -681,7 +681,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasum"/>
|
<substitute key="productType" value="lmasum"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -692,7 +692,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/PGHG/%/%/lmafid</dataURI>
|
<dataURI>/grid/PGHG/%/%/lmafid</dataURI>
|
||||||
|
@ -700,7 +700,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
||||||
<dataURI>/grid/PGHG/%/%/lmamfd</dataURI>
|
<dataURI>/grid/PGHG/%/%/lmamfd</dataURI>
|
||||||
|
@ -708,7 +708,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
||||||
<dataURI>/grid/PGHG/%/%/lmasum</dataURI>
|
<dataURI>/grid/PGHG/%/%/lmasum</dataURI>
|
||||||
|
@ -716,7 +716,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasum"/>
|
<substitute key="productType" value="lmasum"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -727,7 +727,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/PGWT/%/%/lmafid</dataURI>
|
<dataURI>/grid/PGWT/%/%/lmafid</dataURI>
|
||||||
|
@ -735,7 +735,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
||||||
<dataURI>/grid/PGWT/%/%/lmamfd</dataURI>
|
<dataURI>/grid/PGWT/%/%/lmamfd</dataURI>
|
||||||
|
@ -743,7 +743,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
||||||
<dataURI>/grid/PGWT/%/%/lmasum</dataURI>
|
<dataURI>/grid/PGWT/%/%/lmasum</dataURI>
|
||||||
|
@ -751,7 +751,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasum"/>
|
<substitute key="productType" value="lmasum"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -762,7 +762,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/PGCF/%/%/lmafid</dataURI>
|
<dataURI>/grid/PGCF/%/%/lmafid</dataURI>
|
||||||
|
@ -770,7 +770,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
||||||
<dataURI>/grid/PGCF/%/%/lmamfd</dataURI>
|
<dataURI>/grid/PGCF/%/%/lmamfd</dataURI>
|
||||||
|
@ -778,7 +778,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
||||||
<dataURI>/grid/PGCF/%/%/lmasum</dataURI>
|
<dataURI>/grid/PGCF/%/%/lmasum</dataURI>
|
||||||
|
@ -786,7 +786,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasum"/>
|
<substitute key="productType" value="lmasum"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
||||||
|
@ -797,7 +797,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafed"/>
|
<substitute key="productType" value="lmafed"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Flash Initiation Density" id="lma">
|
||||||
<dataURI>/grid/PGLL/%/%/lmafid</dataURI>
|
<dataURI>/grid/PGLL/%/%/lmafid</dataURI>
|
||||||
|
@ -805,7 +805,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmafid"/>
|
<substitute key="productType" value="lmafid"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="Maximum Flash Density" id="lma">
|
||||||
<dataURI>/grid/PGLL/%/%/lmamfd</dataURI>
|
<dataURI>/grid/PGLL/%/%/lmamfd</dataURI>
|
||||||
|
@ -813,7 +813,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmamfd"/>
|
<substitute key="productType" value="lmamfd"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
<contribute xsi:type="bundleItem" file="bundles/Lma.xml" menuText="30 minute Sum" id="lma">
|
||||||
<dataURI>/grid/PGLL/%/%/lmasum</dataURI>
|
<dataURI>/grid/PGLL/%/%/lmasum</dataURI>
|
||||||
|
@ -821,7 +821,7 @@
|
||||||
<substitute key="level" value="0"/>
|
<substitute key="level" value="0"/>
|
||||||
<substitute key="levelType" value="SFC"/>
|
<substitute key="levelType" value="SFC"/>
|
||||||
<substitute key="productType" value="lmasum"/>
|
<substitute key="productType" value="lmasum"/>
|
||||||
<substitute key="colorMapName" value="lma/nalma"/>
|
<substitute key="colorMapName" value="LMA/LMA_default"/>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
</contribute>
|
</contribute>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<colorbarLabeling>
|
<colorbarLabeling>
|
||||||
<values>50.0 100.0 150.0 200.0</values>
|
<values>50.0 100.0 150.0 200.0</values>
|
||||||
</colorbarLabeling>
|
</colorbarLabeling>
|
||||||
<defaultColormap>lma/nalma</defaultColormap>
|
<defaultColormap>LMA/LMA_default</defaultColormap>
|
||||||
<range scale="LINEAR">
|
<range scale="LINEAR">
|
||||||
<minValue>0.0</minValue>
|
<minValue>0.0</minValue>
|
||||||
<maxValue>500.0</maxValue>
|
<maxValue>500.0</maxValue>
|
||||||
|
@ -16,34 +16,18 @@
|
||||||
</imageStyle>
|
</imageStyle>
|
||||||
</styleRule>
|
</styleRule>
|
||||||
|
|
||||||
<styleRule>
|
|
||||||
<paramLevelMatches>
|
|
||||||
<parameter>lmamsd</parameter>
|
|
||||||
</paramLevelMatches>
|
|
||||||
<imageStyle>
|
|
||||||
<colorbarLabeling>
|
|
||||||
<values>50.0 100.0 150.0</values>
|
|
||||||
</colorbarLabeling>
|
|
||||||
<defaultColormap>lma/nalma</defaultColormap>
|
|
||||||
<range scale="LINEAR">
|
|
||||||
<minValue>0.0</minValue>
|
|
||||||
<maxValue>200.0</maxValue>
|
|
||||||
</range>
|
|
||||||
</imageStyle>
|
|
||||||
</styleRule>
|
|
||||||
|
|
||||||
<styleRule>
|
<styleRule>
|
||||||
<paramLevelMatches>
|
<paramLevelMatches>
|
||||||
<parameter>lmafed</parameter>
|
<parameter>lmafed</parameter>
|
||||||
<parameter>lmafid</parameter>
|
<parameter>lmafid</parameter>
|
||||||
<parameter>lmamfd</parameter>
|
<parameter>lmamfd</parameter>
|
||||||
<parameter>lmasum</parameter>
|
|
||||||
</paramLevelMatches>
|
</paramLevelMatches>
|
||||||
<imageStyle>
|
<imageStyle>
|
||||||
<colorbarLabeling>
|
<colorbarLabeling>
|
||||||
<values>10.0 20.0 30.0</values>
|
<values>10.0 20.0 30.0</values>
|
||||||
</colorbarLabeling>
|
</colorbarLabeling>
|
||||||
<defaultColormap>lma/nalma</defaultColormap>
|
<defaultColormap>LMA/LMA_default</defaultColormap>
|
||||||
<range scale="LINEAR">
|
<range scale="LINEAR">
|
||||||
<minValue>0.0</minValue>
|
<minValue>0.0</minValue>
|
||||||
<maxValue>110.0</maxValue>
|
<maxValue>110.0</maxValue>
|
||||||
|
@ -60,14 +44,28 @@
|
||||||
<colorbarLabeling>
|
<colorbarLabeling>
|
||||||
<values>-1.0 0.0 1.0</values>
|
<values>-1.0 0.0 1.0</values>
|
||||||
</colorbarLabeling>
|
</colorbarLabeling>
|
||||||
<defaultColormap>lma/nalma</defaultColormap>
|
<defaultColormap>LMA/LMA_default</defaultColormap>
|
||||||
<range scale="LINEAR">
|
<range scale="LINEAR">
|
||||||
<minValue>-3.0</minValue>
|
<minValue>-3.0</minValue>
|
||||||
<maxValue>3.0</maxValue>
|
<maxValue>3.0</maxValue>
|
||||||
</range>
|
</range>
|
||||||
</imageStyle>
|
</imageStyle>
|
||||||
</styleRule>
|
</styleRule>
|
||||||
|
<styleRule>
|
||||||
|
<paramLevelMatches>
|
||||||
|
<parameter>lmasum</parameter>
|
||||||
|
</paramLevelMatches>
|
||||||
|
<imageStyle>
|
||||||
|
<colorbarLabeling>
|
||||||
|
<values>50.0 100.0 150.0 200.0</values>
|
||||||
|
</colorbarLabeling>
|
||||||
|
<defaultColormap>LMA/LMA_default</defaultColormap>
|
||||||
|
<range scale="LINEAR">
|
||||||
|
<minValue>0.0</minValue>
|
||||||
|
<maxValue>400.0</maxValue>
|
||||||
|
</range>
|
||||||
|
</imageStyle>
|
||||||
|
</styleRule>
|
||||||
|
|
||||||
|
|
||||||
</styleRuleset>
|
</styleRuleset>
|
||||||
|
|
Loading…
Add table
Reference in a new issue