When I click on the map, I want to get the coordinates, but I get strange coordinates. I work in Arcglobe, and I need latitude and longitude, and instead of them strange values, for example, I got the values long 447 and lat 247, but these are not coordinates of latitude and longitude.

<SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">class</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">ToolClass2</SPAN>(object):</SPAN> <SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;">"""Implementation for coord_addin.tool (Tool)"""</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">__init__</SPAN>(self):</SPAN> self.enabled = <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">True</SPAN> self.shape = <SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;">"NONE"</SPAN> <SPAN class="" style="color: var(--highlight-comment); border: 0px; font-weight: inherit; font-size: 13px;"># Can set to "Line", "Circle" or "Rectangle" for interactive shape drawing and to activate the onLine/Polygon/Circle event sinks.</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onMouseDown</SPAN>(self, x, y, button, shift):</SPAN> #pythonaddins.MessageBox(<SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;">"Long"</SPAN> + <SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;">" "</SPAN> + str(x) + <SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;">'\n'</SPAN>+ <SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;">"Lat"</SPAN>+ <SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;">" "</SPAN> + str(y), <SPAN class="" style="color: var(--highlight-variable); border: 0px; font-weight: inherit; font-size: 13px;">'Coordinates'</SPAN>, <SPAN class="" style="color: var(--highlight-namespace); border: 0px; font-weight: inherit; font-size: 13px;">0</SPAN>) <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onMouseDownMap</SPAN>(self, x, y, button, shift):</SPAN> <SPAN class="" style="color: var(--highlight-comment); border: 0px; font-weight: inherit; font-size: 13px;">pythonaddins.MessageBox("Long" + " " + str(x) + '\n'+ "Lat"+ " " + str(y), 'Coordinates', 0)</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onMouseUp</SPAN>(self, x, y, button, shift):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onMouseUpMap</SPAN>(self, x, y, button, shift):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onMouseMove</SPAN>(self, x, y, button, shift):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onMouseMoveMap</SPAN>(self, x, y, button, shift):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onDblClick</SPAN>(self):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onKeyDown</SPAN>(self, keycode, shift):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onKeyUp</SPAN>(self, keycode, shift):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">deactivate</SPAN>(self):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onCircle</SPAN>(self, circle_geometry):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onLine</SPAN>(self, line_geometry):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN> <SPAN class="" style="border: 0px; font-weight: inherit; font-size: 13px;"><SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">def</SPAN> <SPAN class="" style="color: var(--highlight-literal); border: 0px; font-weight: inherit; font-size: 13px;">onRectangle</SPAN>(self, rectangle_geometry):</SPAN> <SPAN class="" style="color: var(--highlight-keyword); border: 0px; font-weight: inherit; font-size: 13px;">pass</SPAN>