protected NmnRoute asNmnFormat(NmnFormat format) {
List<NmnPosition> nmnPositions = new ArrayList<NmnPosition>();
for (Wgs84Position wgs84Position : positions) {
nmnPositions.add(wgs84Position.asNmnPosition());
}
return new NmnRoute(format, getCharacteristics(), getName(), nmnPositions);
}