Fixed bug in template. Fixes #20.
This commit is contained in:
parent
159e74b748
commit
8e88b8771f
@ -265,18 +265,42 @@
|
|||||||
|
|
||||||
(def description-templates
|
(def description-templates
|
||||||
(map generation/parse-template
|
(map generation/parse-template
|
||||||
[(str "[{registration}|{registration}, {type|a-an},|{militaryregistration}, a military aircraft,|"
|
[(str
|
||||||
|
"["
|
||||||
|
;; BEGIN identity & type group. We choose one of the following:
|
||||||
|
;;
|
||||||
|
;; 1. Civilian registration w/o type.
|
||||||
|
"{registration}|"
|
||||||
|
;; 2. Civilian registration w/ type.
|
||||||
|
"{registration}, {type|a-an},|"
|
||||||
|
;; Military registration w/o type.
|
||||||
|
"{militaryregistration}, a military aircraft,|"
|
||||||
|
;; Military registration w/ type.
|
||||||
"{militaryregistration}, a military {type},|"
|
"{militaryregistration}, a military {type},|"
|
||||||
|
;; Civilian w/ unknown registration, and don't have type.
|
||||||
"Aircraft with unknown registration, ICAO {icao}|"
|
"Aircraft with unknown registration, ICAO {icao}|"
|
||||||
"{type} with unknown registration, ICAO {icao}"
|
;; Civilian w/ unknown registration, and have type.
|
||||||
"Military aircraft with unknown registration, ICAO {militaryicao}] "
|
"{type} with unknown registration, ICAO {icao}|"
|
||||||
|
;; Military with unknown registration.
|
||||||
|
"Military aircraft with unknown registration, ICAO {militaryicao}"
|
||||||
|
;; END identity & type group.
|
||||||
|
"] "
|
||||||
|
;; Callsign.
|
||||||
"?:[(callsign {callsign}) ]"
|
"?:[(callsign {callsign}) ]"
|
||||||
|
;; Ideally neighbourhood as well as city or county, but
|
||||||
|
;; maybe just city.
|
||||||
"is circling over [{neighbourhood}, {locality}|{neighbourhood}, {county}|{locality}] "
|
"is circling over [{neighbourhood}, {locality}|{neighbourhood}, {county}|{locality}] "
|
||||||
|
;; Altitude.
|
||||||
"?:[at {alt} feet, ]"
|
"?:[at {alt} feet, ]"
|
||||||
|
;; Speed;
|
||||||
"?:[speed {speed} MPH, ]"
|
"?:[speed {speed} MPH, ]"
|
||||||
|
;; Transponder squawk.
|
||||||
"?:[squawking {squawk}, ]"
|
"?:[squawking {squawk}, ]"
|
||||||
|
;; Landmark.
|
||||||
"?:[{nearbydistance} miles from {nearbylandmark} ]"
|
"?:[{nearbydistance} miles from {nearbylandmark} ]"
|
||||||
|
;; Hashtag based on registration.
|
||||||
"?:[#{registration} |#{militaryregistration} ]"
|
"?:[#{registration} |#{militaryregistration} ]"
|
||||||
|
;; tar1090 link.
|
||||||
"https://tar1090.adsbexchange.com/?icao={icao}&zoom=13")]))
|
"https://tar1090.adsbexchange.com/?icao={icao}&zoom=13")]))
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user