-
Notifications
You must be signed in to change notification settings - Fork 472
New issue
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
Updated definition of US survey units to reflect the 2022 revision by NIST/NGS #1920
Open
jacob-indigo
wants to merge
3
commits into
hgrecco:master
Choose a base branch
from
jacob-indigo:update_usgs_survey_length
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -538,23 +538,31 @@ neper = 1 ; logbase: 2.71828182845904523536028747135266249775724709369995; logfa | |
cubic_yard = yd ** 3 = cu_yd | ||
@end | ||
|
||
# Note: historically, many of the units in this group were derived from each other (e.g. 1 chain = 10 fathoms = 4 rods = 100 links) | ||
# but we've followed the NIST's lead here and defined all of the units directly based on "common" units (feet and miles) | ||
# Source: Warfield, L. , Konijnenburg, J. , Lippa, K. , Lee, G. , Minnich, L. and Williams, J. (2023), Specifications, Tolerances, and Other Technical Requirements for Weighing and Measuring Devices as adopted by the 108th National Conference on Weights and Measures, Handbook (NIST HB), National Institute of Standards and Technology, Gaithersburg, MD, [online], https://doi.org/10.6028/NIST.HB.44-2024 (Accessed January 12, 2024) | ||
@group USCSLengthSurvey | ||
link = 1e-2 * chain = li = survey_link | ||
survey_foot = 1200 / 3937 * meter = sft | ||
fathom = 6 * survey_foot | ||
rod = 16.5 * survey_foot = rd = pole = perch | ||
chain = 4 * rod | ||
furlong = 40 * rod = fur | ||
cables_length = 120 * fathom | ||
survey_mile = 5280 * survey_foot = smi = us_statute_mile | ||
league = 3 * survey_mile | ||
|
||
square_rod = rod ** 2 = sq_rod = sq_pole = sq_perch | ||
acre = 10 * chain ** 2 | ||
square_survey_mile = survey_mile ** 2 = _ = section | ||
cables_length = 720 * foot | ||
chain = 66 * foot = ch | ||
fathom = 6 * foot | ||
furlong = 660 * foot = fur | ||
league = 3 * mile | ||
link = 0.66 * foot = li = survey_link | ||
rod = 16.5 * foot = rd = pole = perch | ||
|
||
square_rod = rod ** 2 = sq_rd = sq_rod = sq_pole = sq_perch | ||
acre = 43560 * square_foot | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You could leave it as is was to minimize diffs. |
||
square_league = league ** 2 | ||
acre_foot = acre * foot = _ = acre_feet | ||
@end | ||
|
||
acre_foot = acre * survey_foot = _ = acre_feet | ||
# The adoption of the international foot in 1959 temporarily permitted the continued use of the 1893 definition of the foot for survey purposes. | ||
# That established the Survey Foot. After 2022, that exception was no longer permitted and all feet are feet (survey or otherwise). | ||
# Source: Barton, J. , Blackwell, B. , Butcher, T. , Harshman, R., Lee, G. , Olson, D. (2019), Specifications, Tolerances, and Other Technical Requirements for Weighing and Measuring Devices as adopted by the 108th National Conference on Weights and Measures 2019, Handbook (NIST HB), National Institute of Standards and Technology, Gaithersburg, MD, [online], h: https://doi.org/10.6028/NIST.HB.44-2020 (Accessed January 12, 2024) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here is an extra |
||
@group USCSLengthSurveyMendenhall | ||
survey_foot = 1200 / 3937 * meter = sft | ||
survey_mile = 5280 * survey_foot = smi = us_statute_mile | ||
square_survey_mile = survey_mile ** 2 | ||
@end | ||
|
||
@group USCSDryVolume | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please keep the order from small to big length unit to make diffs simpler to follow