}
else if(sc.output_type == Constants.TYPE_POLYGON){
int laenge = resp.content().readUnsignedByte();
SumoGeometry sg = new SumoGeometry();
for(int i=0; i<laenge; i++){
double x = (Double) this.get_value(Constants.TYPE_DOUBLE, resp);
double y = (Double) this.get_value(Constants.TYPE_DOUBLE, resp);
sg.add(new SumoPosition2D(x,y));
}
output = sg;
}