>I have a table that includes coordinates of various locatons in the
formats of
>DMS, Decimal, and UTM.  I have moved some of these locations and I want to
use
>the Centroid function to find the correct decimal format.  My problem:
When I
>use the Update Column I consistanlty get my results in UTM.  The column I
am
>putting this data in is of the Float type.  Map Menu, >Options,
>Coordinate
>Units, I have chosen Degrees.  Can somebody please tell me what the
problem may
>be, and how to correct it?

One way to accomplish this is with the MapBasic Window.
First, explicitly set the coordinate system to what you want. For example:

  Set CoordSys Earth Projection 13, 62, "m", 0

Then update the column with coordinates from that system:

  Update Test_Table Set x_column = CentroidX(obj)
  Update Test_Table Set y_column = CentroidY(obj)

You can easily get the coordsys clause to use by opening the MapBasic
window
and setting the map window to the coordsys that you want.

----------------------------------------------------------------------
To unsubscribe from this list, send e-mail to [EMAIL PROTECTED] and put
"unsubscribe MAPINFO-L" in the message body, or contact [EMAIL PROTECTED]

Reply via email to