Fix record label typo: lat_west -> lon_west
authorSiraaj Khandkar <siraaj@khandkar.net>
Thu, 30 Jul 2015 17:33:27 +0000 (13:33 -0400)
committerSiraaj Khandkar <siraaj@khandkar.net>
Thu, 30 Jul 2015 17:33:27 +0000 (13:33 -0400)
README.md
include/x_plane_data.hrl
src/x_plane_data.app.src
src/x_plane_datum.erl

index 16c0a3d..7cc34b8 100644 (file)
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ main(Port) ->
         , on_runwy  = OnRunwy
         , alt_ind   = AltInd
         , lat_south = LatSouth
-        , lat_west  = LatWest
+        , lon_west  = LatWest
         },
     } = hope_kv_list:get(XPlaneData, lat_lon_alt),
 
index e922992..d93611d 100644 (file)
@@ -28,5 +28,5 @@
     , on_runwy  :: float() % 5
     , alt_ind   :: float() % 6
     , lat_south :: float() % 7
-    , lat_west  :: float() % 8
+    , lon_west  :: float() % 8
     }).
index c4e86a9..ccad1bb 100644 (file)
@@ -1,7 +1,7 @@
 {application, x_plane_data,
  [
   {description, "X-Plane UDP data packet parser."},
-  {vsn, "0.0.0"},
+  {vsn, "0.0.1"},
   {registered, []},
   {applications, [
                   kernel,
index 3f6b11f..15b21aa 100644 (file)
@@ -127,7 +127,7 @@ identify_or_index({20, V1, V2, V3, V4, V5, V6, V7, V8}) ->
         , on_runwy  = V5
         , alt_ind   = V6
         , lat_south = V7
-        , lat_west  = V8
+        , lon_west  = V8
         },
     {lat_lon_alt, Datum};
 identify_or_index({Index, _, _, _, _, _, _, _, _}=Anonymous) ->
This page took 0.031434 seconds and 4 git commands to generate.