Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Best way to reorganize coordinates....

New Here ,
Jul 10, 2017 Jul 10, 2017

Hello All......

I need to reorganize longitudes and latitudes......

Here is what I have right now:

-81.93,39.19;-81.77,39.34;-81.38,39.2;-81.65,38.99

What I need is the following:

39.19,-81.93;39.34,-81.77;39.2,-81.38;38.99,-81.65

I have tried a number of methods, but just can't get it right. Now I going crazy.....

The above is represented with the #polygons# variable.

Any input would be appreciated.

Thank you so much!!!!

1.3K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jul 11, 2017 Jul 11, 2017

<cfset newList = "">

<!--- Treat oldList as list having delimiter ; --->

<cfset oldList = "-81.93,39.19;-81.77,39.34;-81.38,39.2;-81.65,38.99">

<cfloop list="#oldList#" index="element" delimiters=";">

    <!--- Reverse the coordinates, treating each list element as list having delimiter , --->

    <cfset x = listGetAt(element,2)>

    <cfset y = listGetAt(element,1)>

    <!--- Create newList as list having delimiter ; --->

    <cfset newList = listAppend(newList, x & "," & y, ";")>

</cfloop>

<cfoutput>

   

...
Translate
Advocate ,
Jul 11, 2017 Jul 11, 2017

What have you tried? Show us some code....

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 11, 2017 Jul 11, 2017

<cfset newList = "">

<!--- Treat oldList as list having delimiter ; --->

<cfset oldList = "-81.93,39.19;-81.77,39.34;-81.38,39.2;-81.65,38.99">

<cfloop list="#oldList#" index="element" delimiters=";">

    <!--- Reverse the coordinates, treating each list element as list having delimiter , --->

    <cfset x = listGetAt(element,2)>

    <cfset y = listGetAt(element,1)>

    <!--- Create newList as list having delimiter ; --->

    <cfset newList = listAppend(newList, x & "," & y, ";")>

</cfloop>

<cfoutput>

    oldList: #oldList# <br>

    newList: #newList#

</cfoutput>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 12, 2017 Jul 12, 2017

Thank you so much for your help!!!! I will try and implement.

Appreciate your feedback!!!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 12, 2017 Jul 12, 2017

That worked perfectly!!!! Thank you again!!!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 12, 2017 Jul 12, 2017
LATEST

I am glad to hear.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources