1
0
Fork 0
mirror of https://github.com/on4kjm/FLEcli.git synced 2025-01-31 14:51:04 +01:00
FLEcli/fleprocess/adif_write.go
Eric Codes d36c6c776e
Generate a canonical POTA log without the --pota flag
There is no reason why a POTA log should not be generated like the
canonical one without the --pota flag.

Now the --pota flag turns on validation. If you forget to turn on
--pota and include a MyPark header directive, POTA.app will reject
your log because it is missing MY_SIG_INFO.

Branch: support-pota-hunters
2025-01-14 16:03:42 -05:00

136 lines
4.3 KiB
Go

package fleprocess
/*
Copyright © 2020 Jean-Marc Meessen, ON4KJM <on4kjm@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import (
"fmt"
"strings"
"time"
)
// OutputAdif generates and writes data in ADIF format
func OutputAdif(outputFile string, fullLog []LogLine, adifParams AdifParams) {
//convert the log data to an in-memory ADIF file
adifData := buildAdif(fullLog, adifParams)
//write to a file
writeFile(outputFile, adifData)
}
// buildAdif creates the adif file in memory ready to be printed
func buildAdif(fullLog []LogLine, adifParams AdifParams) (adifList []string) {
//Print the fixed header
adifList = append(adifList, "ADIF Export for Fast Log Entry by DF3CB")
adifList = append(adifList, "<PROGRAMID:3>FLE")
adifList = append(adifList, "<ADIF_VER:5>3.1.0")
adifList = append(adifList, "<EOH>")
for _, logLine := range fullLog {
var adifLine strings.Builder
adifLine.WriteString(adifElement("STATION_CALLSIGN", logLine.MyCall))
adifLine.WriteString(adifElement("CALL", logLine.Call))
adifLine.WriteString(adifElement("QSO_DATE", adifDate(logLine.Date)))
adifLine.WriteString(adifElement("TIME_ON", logLine.Time))
adifLine.WriteString(adifElement("BAND", logLine.Band))
adifLine.WriteString(adifElement("MODE", logLine.Mode))
if logLine.Frequency != "" {
adifLine.WriteString(adifElement("FREQ", logLine.Frequency))
}
adifLine.WriteString(adifElement("RST_SENT", logLine.RSTsent))
adifLine.WriteString(adifElement("RST_RCVD", logLine.RSTrcvd))
if logLine.GridLoc != "" {
adifLine.WriteString(adifElement("GRIDSQUARE", logLine.GridLoc))
}
if logLine.Comment != "" {
adifLine.WriteString(adifElement("COMMENT", logLine.Comment))
}
if logLine.OMname != "" {
adifLine.WriteString(adifElement("NAME", logLine.OMname))
}
if logLine.QSLmsg != "" {
adifLine.WriteString(adifElement("QSLMSG", logLine.QSLmsg))
}
if adifParams.IsWWFF {
adifLine.WriteString(adifElement("MY_SIG", "WWFF"))
adifLine.WriteString(adifElement("MY_SIG_INFO", logLine.MyWWFF))
if logLine.WWFF != "" {
adifLine.WriteString(adifElement("SIG", "WWFF"))
adifLine.WriteString(adifElement("SIG_INFO", logLine.WWFF))
}
}
if logLine.MyPOTA != "" {
adifLine.WriteString(adifElement("MY_SIG", "POTA"))
adifLine.WriteString(adifElement("MY_SIG_INFO", logLine.MyPOTA))
}
if logLine.POTA != "" {
adifLine.WriteString(adifElement("SIG", "POTA"))
adifLine.WriteString(adifElement("SIG_INFO", logLine.POTA))
}
if adifParams.IsSOTA {
adifLine.WriteString(adifElement("MY_SOTA_REF", logLine.MySOTA))
if logLine.SOTA != "" {
adifLine.WriteString(adifElement("SOTA_REF", logLine.SOTA))
}
}
if logLine.Operator != "" {
adifLine.WriteString(adifElement("OPERATOR", logLine.Operator))
}
if logLine.MyGrid != "" {
adifLine.WriteString(adifElement("MY_GRIDSQUARE", logLine.MyGrid))
}
if logLine.MyLat != "" {
adifLine.WriteString(adifElement("MY_LAT", logLine.MyLat))
}
if logLine.MyLon != "" {
adifLine.WriteString(adifElement("MY_LON", logLine.MyLon))
}
if logLine.MyCounty != "" {
adifLine.WriteString(adifElement("MY_CNTY", logLine.MyCounty))
}
if logLine.Nickname != "" {
adifLine.WriteString(adifElement("APP_EQSL_QTH_NICKNAME", logLine.Nickname))
}
adifLine.WriteString("<EOR>")
adifList = append(adifList, adifLine.String())
}
return adifList
}
// adifElement generated the ADIF sub-element
func adifElement(elementName, elementValue string) (element string) {
return fmt.Sprintf("<%s:%d>%s ", strings.ToUpper(elementName), len(elementValue), elementValue)
}
// adifDate converts a date in YYYY-MM-DD format to YYYYMMDD
func adifDate(inputDate string) (outputDate string) {
const FLEdateFormat = "2006-01-02"
date, err := time.Parse(FLEdateFormat, inputDate)
//error should never happen
if err != nil {
panic(err)
}
const ADIFdateFormat = "20060102"
return date.Format(ADIFdateFormat)
}