-
Notifications
You must be signed in to change notification settings - Fork 393
Add VolumePerLength yd3 / ft and ftUS #734
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
Conversation
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.
Looks good to me, but note that I did not verify the conversion constants as I could not find any conversion references.
@@ -32,5 +32,9 @@ public class VolumePerLengthTests : VolumePerLengthTestsBase | |||
protected override double LitersPerMeterInOneCubicMeterPerMeter => 1000; | |||
|
|||
protected override double OilBarrelsPerFootInOneCubicMeterPerMeter => 1.917134088; | |||
|
|||
protected override double CubicYardsPerFootInOneCubicMeterPerMeter => 0.3986633487670267521605; |
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.
I was not able to verify these as I could not find any references, but I trust you checked it.
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.
A quick check would be
1 m² = 1.19599 yd²
1.19599 yd² * (1 yd / 3 ft) = 0.3986633 yd³ / ft
Codecov Report
@@ Coverage Diff @@
## master #734 +/- ##
==========================================
+ Coverage 58.56% 58.58% +0.01%
==========================================
Files 171 171
Lines 38430 38448 +18
==========================================
+ Hits 22507 22525 +18
Misses 15923 15923
Continue to review full report at Codecov.
|
Thank you! |
Succeeds #733