I'm working with latitude and longitude variables but I ran into a curious error:
Code:
clear
input float(latitude longitude)
40.6666  -8.3639
 -11.25 -69.1667
end

list lat lon
list lat longi
list lat long
Code:
. list lat lon

     +---------------------+
     | latitude   longit~e |
     |---------------------|
  1. |  40.6666    -8.3639 |
  2. |   -11.25   -69.1667 |
     +---------------------+

. list lat longi

     +---------------------+
     | latitude   longit~e |
     |---------------------|
  1. |  40.6666    -8.3639 |
  2. |   -11.25   -69.1667 |
     +---------------------+

. list lat long
long not allowed
r(101);
Is this the desired behaviour? It seems odd to me.

I'm using Stata 15.1