D3 mercator function NaN

纵然是瞬间 提交于 2019-12-22 06:29:10

问题


I'm not too familiar with the D3 mercator projection function, and I'm getting some unexpected results. I'd like to project the following latitude and longitude (somewhere in Mexico):

var geo = [19, -99]

I define my mercator projection using d3

var projection = d3.geo.mercator();
projection(geo)
> [529.7418836818384, NaN]

which is a point obviously not on a map. What exactly am I doing wrong? Thanks!


回答1:


Javascript has it's lat and long round the opposite way to the rest of the world, so what you've given D3 is a longditue of 19 and a latitude of -99. Obviously there is no latitude of -99 hence the NaN. Now if you just reverse your geo variable to

var geo = [-99, 19]

all should be good.



来源:https://stackoverflow.com/questions/20026640/d3-mercator-function-nan

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