protected BcrRoute asBcrFormat(BcrFormat format) {
List<BcrPosition> bcrPositions = new ArrayList<BcrPosition>();
for (Wgs84Position wgs84Position : positions) {
bcrPositions.add(wgs84Position.asMTPPosition());
}
return new BcrRoute(format, getName(), getDescription(), bcrPositions);
}