Skip to content

Commit

Permalink
flighdata-skyalps-gtfs: make filenames lowercase and adjust tiemzone …
Browse files Browse the repository at this point in the history
…value
  • Loading branch information
dulvui committed Jan 22, 2024
1 parent b6f627d commit 20eb72b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class DefaultValues {

private static String defaultAgency_nameValue = "SkyAlps";
private static String defultAgency_urlValue = "http://www.skyalps.com";
private static String defaultAgencyTimeZone_Value = "EuropeRome";
private static String defaultAgencyTimeZone_Value = "Europe/Rome";
private static String defaultAgencyLangValue = "English";
private static String snameString = "sname";
private static String soriginString = "sorigin";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@

public class GTFSFileNames {

private static String agency = "Agency";
private static String stops = "Stops";
private static String routes = "Routes";
private static String trips = "Trips";
private static String stop_times = "Stop_times";
private static String calendar = "Calendar";
private static String calendar_dates = "Calendar_dates";
private static String fare_attributes = "Fare_attributes";
private static String fare_rules = "Fare_rules";
private static String shapes = "Shapes";
private static String frequencies = "Frequencies";
private static String transfers = "Transfers";
private static String feed_info = "Feed_info";
private static String agency = "agency";
private static String stops = "stops";
private static String routes = "routes";
private static String trips = "trips";
private static String stop_times = "stop_times";
private static String calendar = "calendar";
private static String calendar_dates = "calendar_dates";
private static String fare_attributes = "fare_attributes";
private static String fare_rules = "fare_rules";
private static String shapes = "shapes";
private static String frequencies = "frequencies";
private static String transfers = "transfers";
private static String feed_info = "feed_info";

public String getAgency() {
return agency;
Expand Down

0 comments on commit 20eb72b

Please sign in to comment.