DbGeography.PointFromText() throws 'Latitude values must be between -90 and 90 degrees' for Japan

大憨熊 提交于 2019-12-18 05:35:09

问题


Google tells me that Japan's lat/long values are (36,138) but .NET throws the error

24201: Latitude values must be between -90 and 90 degrees.

Any ideas why?


回答1:


I have had the same issue as you, I was using DbGeography.PointFromText("Point(lat lng)") when the lat & lng arguments are expected the other way around. The complete answer is this:

// From Google, Japan's latitude: 36; longitude: 138
var lat = 36;
var lng = 138;
var location = DbGeography.PointFromText($"Point({lng} {lat})");


来源:https://stackoverflow.com/questions/16546598/dbgeography-pointfromtext-throws-latitude-values-must-be-between-90-and-90-d

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!