output = new SumoPosition2D(x,y);
}else if(sc.output_type == Constants.POSITION_3D){
double x = resp.content().readDouble();
double y = resp.content().readDouble();
double z = resp.content().readDouble();
output = new SumoPosition3D(x,y,z);
}else if(sc.output_type == Constants.TYPE_STRINGLIST){
SumoStringList ssl = new SumoStringList();
int laenge = resp.content().readInt();
for(int i=0; i<laenge; i++){