From 6c20883e4e03a8e03b48f174c2c184a377e300cd Mon Sep 17 00:00:00 2001 From: Christopher Young Date: Sun, 13 Dec 2015 18:23:12 -0500 Subject: [PATCH] Revert "Beginning." This reverts commit 1fc4e70152ba5dc4567febb00f101a43eff6814d. --- uatparse/uatdata.go | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 uatparse/uatdata.go diff --git a/uatparse/uatdata.go b/uatparse/uatdata.go deleted file mode 100644 index f04dbf18..00000000 --- a/uatparse/uatdata.go +++ /dev/null @@ -1,30 +0,0 @@ -package uatparse - -// AIRMET = AIRMET/SIGMET/ (TFR?) - -const ( - UATMSG_TEXT = 1 - UATMSG_NEXRAD = 2 - UATMSG_AIRMET = 3 // AIRMET. Decoded. - - // How the coordinates should be used in a graphical AIRMET. - AIRMET_POLYGON = 1 - AIRMET_ELLIPSE = 2 - AIRMET_PRISM = 3 - AIRMET_3D = 4 -) - -// Points can be in 3D - take care that altitude is used correctly. -type GeoPoints struct { - Lat float64 - Lon float64 - Alt int32 -} - -type UATAirmet struct { - Points []GeoPoints // Points -} - -type UATMsgDecoded struct { - Type int -}