我正在使用spatiallite.exe
版本4.2.0的命令行,并且在WGS84中有一个我用纬度和经度导入的数据表。数据或多或少如下:
[Study_ID] [StationNumber] [Latitude] [Longitude]
"2016SWSamp " "SJSW001" "-95.08945" "29.79917"
My SQL我在space lite中运行
select
Study_ID,
StationNumber,
'SW Sampling' as location_purpose,
st_geomfromtext('POINT('||Longitude||' '||Latitude||')',4326)
并返回geomfromtext函数的所有空值。我尝试使用我在其他地方看过的geomfromtext
来改变案例,但都无济于事。
任何人都能看到我做错了什么?
谢谢, SA