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
write_all_mapping_tables() determines the latest target year by:
MAX_YEAR <- lubridate::year( max(swc_get_municipality_mutations()$mAbolitionDate, na.rm = TRUE) ) + 1L
which means in case the last abolition happened during the current year, the target year will be 1 year in the future.
I would suggest
lubridate::year( max(swc_get_municipality_mutations()$mAdmissionDate, na.rm = TRUE) )
The text was updated successfully, but these errors were encountered:
It seems ok -- #58 created a table that would be valid, to the best of our knowledge, for the municipality level of 2023. Can you please double-check?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
write_all_mapping_tables() determines the latest target year by:
which means in case the last abolition happened during the current year, the target year will be 1 year in the future.
I would suggest
The text was updated successfully, but these errors were encountered: