1

I'm using NodeXL to plot a lot of points which are actual coordinates for cities.

The thing is that the way it's plotted now is that North America is on the Bottom Right but it should be on the top left like on a normal map.

It's like this for all of the points so pretty much I need to rotate the whole graph so that what's on the bottom right will be top left after transformation, and what's on the top right will be on the bottom left.

I have two columns with X and Y points as follows (for example):

X       Y
6,238.2 9,896.0
6,141.9 9,896.0

I'm not sure the formula or Math behind this kind of rotation.

The graph is only positive so from (0,0) upward and outward to the right, there are no negative values on the x or y axis.

Could anyone help me out?

4

1 回答 1

0

为了回答:

引用@Tim Williams:Instead of plotting x and y plot (width-x) and (height-y)

例子:

SO13889501 示例

于 2013-12-20T02:27:13.003 回答