Support density and non-density pixels in raster style

This commit is contained in:
vshcherb 2013-09-13 00:47:24 +02:00
parent a647566ef0
commit b10ad5e6b5

View file

@ -134,6 +134,15 @@ public class RenderingRuleProperty {
public int parseIntValue(String value){
if(type == INT_TYPE){
try {
int colon = value.indexOf(':');
if(colon != -1) {
int c = 0;
if(c > 0) {
c += Integer.parseInt(value.substring(0, c));
}
c += Integer.parseInt(value.substring(c + 1));
return c;
}
return Integer.parseInt(value);
} catch (NumberFormatException e) {
log.error("Rendering parse " + value);
@ -159,6 +168,15 @@ public class RenderingRuleProperty {
public float parseFloatValue(String value){
if(type == FLOAT_TYPE){
try {
int colon = value.indexOf(':');
if(colon != -1) {
float c = 0;
if(c > 0) {
c += Float.parseFloat(value.substring(0, c));
}
c += Float.parseFloat(value.substring(c + 1));
return c;
}
return Float.parseFloat(value);
} catch (NumberFormatException e) {
log.error("Rendering parse " + value);