1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
#!/usr/bin/perl
# Written by Curt Mills, WE7U
# Released to the public domain.
#
#
# Invoke this script against one or more info files by typing:
#
# inf2geo.pl filename.inf
# -or-
# inf2geo.pl *.inf
#
# To process all .inf files in that directory.
#
# Note: This script requires GraphicsMagick or ImageMagick packages
# to be installed before it will function properly. Install one of
# these via your package manager.
#
#
# What the script does for you:
# Read in .inf file (from Ui-View)
# Convert the lat/long coordinates into dd.dddd format
# Get the image extents via "identify -ping filename" or
# "gm identify -ping filename".
# Write out the .geo file
# Note that this program assumes (and converts to)
# lower-case for the filename.
#
# Note: It appears that .INF files store the lat/lon
# in DD.MM.MMMM format. Converting the script to this
# format.
#
# 2003-08-15 ZL2UMF: add processing multiple files in one go (masks and whot-not)
# so you can convert all your ui-view maps in one step
#use strict;
use IO::File;
#go through every filename passed to this script
#printf("ARGV:%d\n",$#ARGV);
if ($#ARGV == -1) {
# No filenames on the command line
printf("\n\n\nNo filenames specified. Invoke this script against one\n");
printf("or more .inf files by typing:\n\n");
printf(" inf2geo.pl filename.inf\n");
printf("-or-\n");
printf(" inf2geo.pl *.inf\n\n");
printf("To process all .inf files in that directory.\n\n");
exit;
}
else {
foreach my $file (@ARGV) {
print "*** $file ***\n";
#make a geo of this file
makeGeo ($file);
}
}
exit; #just in case
sub makeGeo {
my $inf_filename = shift;
my $filename = $inf_filename;
$filename =~ s/\.inf$//i;
my $geo_filename = $filename . ".geo";
# $inf = IO::File->new("< $ARGV[0].inf")
# or $inf = IO::File->new("< $ARGV[0].INF")
# or $inf = IO::File->new("< $ARGV[0].Inf")
#skip this file if geo already exists
return print "$filename.geo already exists, will not overwrite\n" if( -e "$filename.geo" );
#read the inf file
my $inf = IO::File->new ( "< $inf_filename" )
or return print "\nCouldn't open $inf_filename for reading:\n$!\n\n";
#make the new geo file
$geo = IO::File->new("> $geo_filename")
or return print "Couldn't open $geo_filename for writing: $!\n";
$upper_left = $inf->getline();
my ($tp0_lon, $tp0_lat) = split(',', $upper_left);
chomp($tp0_lat);
# Reverse them
if ( ($tp0_lat =~ /E/) || ($tp0_lat =~ /W/) ) {
$temp = $tp0_lat;
$tp0_lat = $tp0_lon;
$tp0_lon = $temp;
}
$lower_right = $inf->getline();
($tp1_lon, $tp1_lat) = split(',', $lower_right);
chomp($tp1_lat);
# Reverse them
if ( ($tp1_lat =~ /E/) || ($tp1_lat =~ /W/) ) {
$temp = $tp1_lat;
$tp1_lat = $tp1_lon;
$tp1_lon = $temp;
}
#do some maths
$tp0_lat2 = &convert($tp0_lat) or return;
$tp0_lon2 = &convert($tp0_lon) or return;
$tp1_lat2 = &convert($tp1_lat) or return;
$tp1_lon2 = &convert($tp1_lon) or return;
my ($final_filename, $string) = &findImageFile($filename) or return;
# The format returned by string changed from this:
# test.gif 1148x830+0+0 PseudoClass 256c 48kb GIF 1s
# to this:
# test.gif GIF 1148x830+0+0 PseudoClass 256c Palette 8-bit 48kb 0.4u 0:01
# in later versions of ImageMagick.
#
# GraphicsMagick returns a string like this:
# i4-mo.gif GIF 1020x581+0+0 PseudoClass 256c 8-bit 475.8k 0.050u 0:01
#
chomp($string);
$string =~ s/.*\s(\d+x\d+).*/$1/; # Grab the 1148x830 portion
#print "String: $string\n";
$x = $y = $string;
$x =~ s/(\d+)x\d+/$1/;
$y =~ s/\d+x(\d+)/$1/;
#print "X: $x\nY: $y\n";
$x1 = $x - 1; # We start numbering pixels at zero, not 1
$y1 = $y - 1; # We start numbering pixels at zero, not 1
#print "X: $x\nY: $y\n";
#print "X1: $x1\nY1: $y1\n";
#write to the geo file
printf $geo "FILENAME $final_filename\n";
printf $geo "TIEPOINT 0\t\t0\t$tp0_lon2\t$tp0_lat2\n";
printf $geo "TIEPOINT $x1\t$y1\t$tp1_lon2\t$tp1_lat2\n";
printf $geo "IMAGESIZE $x\t$y\n";
printf $geo "#$string\n";
printf $geo "#\n# Converted from a .INF file by WE7U's inf2geo.pl script\n#\n";
$inf->close();
$geo->close();
}
sub convert
{
#print "$_[0] -> ";
($dd,$mm,$mm2) = split('\.', $_[0]);
$mm2 =~ s/(\d+).*/$1/;
$mm = $mm . "\." . $mm2;
$number = $dd + ($mm / 60.0);
if ( ($_[0] =~ /S/) || ($_[0] =~ /s/)
|| ($_[0] =~ /W/) || ($_[0] =~ /w/) )
{
$number = -$number;
}
# Latitude bound checking
if ( ($_[0] =~ /S/) || ($_[0] =~ /s/) || ($_[0] =~ /N/) || ($_[0] =~ /n/) ) {
if ($dd > 90) {
print "Latitude degrees out-of-bounds: $dd. Must be <= 90\n";
return;
}
if ($mm >= 60) {
print "Latitude minutes out-of-bounds: $mm. Must be < 60\n";
return;
}
if (abs($number) > 90.0) {
print "Latitude out-of-bounds: $number. Must be between -90 and +90\n";
return;
}
}
# Longitude bounds checking
else {
if ($dd > 180) {
print "Longitude degrees out-of-bounds: $dd. Must be <= 180\n";
return;
}
if ($mm >= 60) {
print "Longitude minutes out-of-bounds: $mm. Must be < 60\n";
return;
}
if (abs($number) > 180.0) {
print "Longitude out-of-bounds: $number. Must be between -180 and +180\n";
return;
}
}
#print "$number\n";
#print "Temp = $temp\n";
return($number);
}
sub findImageFile {
$filename = shift;
@extensions = ("gif", "bmp", "jpg", "png", "emf");
foreach $xtn (@extensions) {
$try_filename = "$filename.$xtn";
# print "Looking for $try_filename\n";
# Try GraphicsMagick's 'gm' first
$string = `gm identify -ping $try_filename 2>/dev/null`;
if ($string eq "") {
# Else try ImageMagick's 'identify'
$string = `identify -ping $try_filename 2>/dev/null`;
}
if ($string ne "") {
# Found the file and GM or IM
$filename = $try_filename;
$image_size = $string;
}
}
if ($image_size eq "") {
print "Image file not found for $filename, may be be a case problem\n" ;
print "or a problem finding GraphicsMagick's 'gm' or ImageMagick's 'identify' program\n";
print "Make sure that either GraphicsMagick or ImageMagick is installed.\n";
return;
}
print "Found this image: $image_size\n";
return ($filename, $image_size);
}
|