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

Best way to reorganize coordinates....

New Here ,
Jul 10, 2017 Jul 10, 2017

Copy link to clipboard

Copied

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!!!!

Views

1.0K

Translate

Translate

Report

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>

   

...

Votes

Translate

Translate
Advocate ,
Jul 11, 2017 Jul 11, 2017

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

<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>

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Appreciate your feedback!!!

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

I am glad to hear.

Votes

Translate

Translate

Report

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
Documentation