Skip to content

Commit

Permalink
fix: 2024 table 11 export
Browse files Browse the repository at this point in the history
  • Loading branch information
ronaldtse committed Mar 30, 2024
1 parent 4b7e51c commit aa2bed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/atmospheric/export/iso_25332024.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def row(p, unit:)
method_name = "geopotential_altitude_from_pressure_#{unit}"
gp_h_m = Isa.send(method_name, p)
gp_h_ft = m_to_ft(gp_h_m)
gm_h_m = Isa.geometric_altitude_from_geopotential(p)
gm_h_m = Isa.geometric_altitude_from_geopotential(gp_h_m)
gm_h_ft = m_to_ft(gm_h_m)
{
"pressure-#{unit}" => p,
Expand Down

0 comments on commit aa2bed5

Please sign in to comment.