We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
root cause is names(LO) <- c( "Record Identity", "Location", "Suffix", "Scheduled Departure Time", "Public Departure Time", "Platform", "Line", "Engineering Allowance", "Pathing Allowance", "Pathing Allowance", "Performance Allowance", "Spare" )
note duplication of "pathing allowance" ...should be
names(LO) <- c( "Record Identity", "Location", "Suffix", "Scheduled Departure Time", "Public Departure Time", "Platform", "Line", "Engineering Allowance", "Pathing Allowance", "Activity", "Performance Allowance", "Spare" )
and then further code to process the Activity field - have a fix for it but it's mixed in with a bucket load of other changes.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
root cause is
names(LO) <- c(
"Record Identity", "Location", "Suffix", "Scheduled Departure Time",
"Public Departure Time", "Platform", "Line", "Engineering Allowance",
"Pathing Allowance", "Pathing Allowance", "Performance Allowance",
"Spare"
)
note duplication of "pathing allowance"
...should be
names(LO) <- c(
"Record Identity", "Location", "Suffix", "Scheduled Departure Time",
"Public Departure Time", "Platform", "Line", "Engineering Allowance",
"Pathing Allowance", "Activity", "Performance Allowance",
"Spare"
)
and then further code to process the Activity field - have a fix for it but it's mixed in with a bucket load of other changes.
The text was updated successfully, but these errors were encountered: