From 1820be6ab6ebe7efa911b4dc80810b07c233980f Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Thu, 14 Apr 2016 12:16:28 -0700 Subject: [PATCH] fix tower height, #39776 --- httemplate/misc/tower-export.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httemplate/misc/tower-export.html b/httemplate/misc/tower-export.html index d359a97a5..9d63640f0 100644 --- a/httemplate/misc/tower-export.html +++ b/httemplate/misc/tower-export.html @@ -18,7 +18,7 @@ if ( $cgi->param('format') eq 'tc' ) { next if ( !$tower->latitude or !$tower->longitude ); my $name = $tower->towername; - my $height = ( ($tower->altitude || 0 ) + ($tower->height || 0) ) / 3.28; + my $height = ($tower->height || 0) / 3.28; $name =~ s(,)( )g; $text .= join(',', $name, -- 2.11.0