mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-12 22:18:48 +00:00
line Ausfl
git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@792 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
parent
4964965f11
commit
ce033e31cb
1 changed files with 15 additions and 0 deletions
|
@ -926,6 +926,21 @@ public final class BvgProvider extends AbstractHafasProvider
|
||||||
return super.normalizeLine(line);
|
return super.normalizeLine(line);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected char normalizeType(final String type)
|
||||||
|
{
|
||||||
|
final String ucType = type.toUpperCase();
|
||||||
|
|
||||||
|
if ("AUSFL".equals(ucType)) // Umgebung Berlin
|
||||||
|
return 'R';
|
||||||
|
|
||||||
|
final char t = super.normalizeType(type);
|
||||||
|
if (t != 0)
|
||||||
|
return t;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
private static final Map<String, int[]> LINES = new HashMap<String, int[]>();
|
private static final Map<String, int[]> LINES = new HashMap<String, int[]>();
|
||||||
|
|
||||||
static
|
static
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue