/usr/lib/gpsman/gf2gmn.tcl is in gpsman 6.4.3-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/bin/sh
# This is a Tcl/Tk script to be interpreted by wish (Tk8.0 or better): \
exec wish "$0" -- "$@"
# gf2gmn --- convert Greenflag HTML files into GPSManager files
#
# Copyright (c) 2004 Nigel Orr (gps@river-view.freeserve.co.uk) and
# Miguel Filgueiras (mig@ncc.up.pt) / Universidade do Porto
#
# based on
# mb2gmn --- convert MapBlast files into GPSManager files
#
# Copyright (c) 2004 Martin Ostermann (ost@brainaid.dascon.de) and
# Miguel Filgueiras (mig@ncc.up.pt)
#
# To be used with the source of
#
# gpsman --- GPS Manager: a manager for GPS receiver data
#
# Copyright (c) 2004 Miguel Filgueiras (mig@ncc.up.pt) / Universidade do Porto
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.
#
#
# File: gf2gmn.tcl
# Last change: 25 July 2004
#
############ configuration parameters
#
# the first variable below MUST be correctly set for gf2gmn to work!
#
# path to directory with the sources of GPSMan
# NOTE for non-Unix users: use "/" (not "\") in pathnames
set SRCDIR ../gmsrc
## routes are created with id number starting from:
set RTID 100
## for all these variables see gpsman.tcl, the GPSMan options menus
## and the GPSMan documentation
set DISTUNIT KM
set LANG engl
set ISOLATIN1 1
set DELETE 1
set DateFormat DDMMMYYYY
set ALTUNIT M
set TimeOffset 0
set CREATIONDATE 0
set PERMS 0644
set LISTHEIGHT 22
set EPOSX 340 ; set EPOSY 50
set DPOSX 290 ; set DPOSY 50
set COLOUR(dialbg) gray
set COLOUR(messbg) "#ff8d90"
set COLOUR(selbg) "#F0E9C0"
set COLOUR(check) red
set ALLMONTH(1) "Jan Gen jan"
set ALLMONTH(2) "Feb Fev feb"
set ALLMONTH(3) "Mar Mär mrt"
set ALLMONTH(4) "Apr Abr Avr apr"
set ALLMONTH(5) "May Mai Mag mei"
set ALLMONTH(6) "Jun Giu jun"
set ALLMONTH(7) "Jul Lug jul"
set ALLMONTH(8) "Aug Ago Aou aug"
set ALLMONTH(9) "Sep Set sep"
set ALLMONTH(10) "Oct Okt Out Ott okt"
set ALLMONTH(11) "Nov nov"
set ALLMONTH(12) "Dec Dez Dic dec"
########## no configurable values after this point
set CMDLINE 0
foreach f "lang$LANG gendials compute check util" {
source [file join $SRCDIR $f.tcl]
}
array set FCOMMAND {
format "!Format:"
pformat "!Position:"
datum "!Datum:"
dates "!Creation:"
0 no
1 yes
WP "!W:"
RT "!R:"
comment "%"
}
set File(RT) ""
set File(GreenFlag) ""
set FileTypes {RT GreenFlag}
set TXT(nameGreenFlag) GreenFlag
set RTCount 0
set WindowStack ""
set UNIX [expr ! [string compare $tcl_platform(platform) "unix"]]
### conversion
proc GreenFlagToGPSMan {infile outfile} {
# based on proc ImportMapBlast
# by Martin Ostermann <ost@brainaid.dascon.de>
# with changes by Miguel Filgueiras <mig@ncc.up.pt>
# Modified for greenflag.co.uk by Nigel Orr <gps@river-view.freeserve.co.uk>
global MESS FCOMMAND TimeOffset CREATIONDATE RTID RTCount
set date [NowTZ]
puts $outfile \
"$FCOMMAND(comment) Written by gf2gmn: GreenFlag to GPSManager $date"
puts $outfile ""
puts $outfile "$FCOMMAND(format) DDD $TimeOffset WGS 84"
puts $outfile "$FCOMMAND(dates) $FCOMMAND($CREATIONDATE)"
puts $outfile ""
puts $outfile "$FCOMMAND(RT)\t[expr $RTID+$RTCount]"
set ns ""
while { ! [eof $infile] } {
set line [gets $infile]
if { ! [regexp {.*(IMG|img).*} $line] } { continue }
if { ! [regexp \
{.*IC=[-0-9.]*%3A[-0-9.]*%3A100%3A([0-9]*)%3A([-0-9.]*)%3A([-0-9.]*)%3A.*} \
$line match name lat long] } { continue }
#set name "$RTCount-$name"
# increment to match route point number
set name "[expr $name+1]"
set name "[expr $RTID+$RTCount]-$name"
if { ! [CheckLat GMMessage $lat DDD] || \
! [CheckLong GMMessage $long DDD] } { continue }
set latd [Coord DDD $lat S] ; set longd [Coord DDD $long W]
set p "$latd\t$longd"
if { $CREATIONDATE } {
puts $outfile "$name\t\t$date\t$p"
} else {
puts $outfile "$name\t\t$p"
}
lappend ns $name
}
if { [set n [llength $ns]] == 0 } {
GMMessage $MESS(voidRT) wait
return
}
puts $outfile ""
incr RTCount
return
}
wm protocol . WM_DELETE_WINDOW { exit 1 }
frame .fr -relief flat -borderwidth 5 -bg $COLOUR(messbg)
label .fr.title -text "gf2gmn" -relief sunken
pack .fr.title -side top -pady 5
pack .fr -side top
update idletasks
if { ! [GMChooseParams $TXT(select) RTID \
[list "=$TXT(number) ($TXT(nameRT))"]] } {
exit
}
set RTID [string trim "$RTID" " "]
if { ! [regexp {^[0-9]+$} $RTID] } { bell ; exit }
while 1 {
if { [set infile [GMOpenFile $TXT(loadfrm) GreenFlag r]] == ".." } {
exit
}
if { [set outfile [GMOpenFile $TXT(saveto) RT w]] == ".." } { exit }
GreenFlagToGPSMan $infile $outfile
close $outfile
close $infile
}
|