User:Eleanorg/Thematic1.1/Manipulate Longitude 2 - percent: Difference between revisions

From XPUB & Lens-Based wiki
(Created page with "Converts any number within a given range into a percentage value, based on its position within the range. In this case, the number is a longitude value, which is converted to an ...")
 
No edit summary
Line 3: Line 3:


Heavily commented for your viewing pleasure.
Heavily commented for your viewing pleasure.
<script type=python>
<source lang=python>
 
import re
import re


### convert longitude into 5 digit integer
### convert longitude into 5 digit integer

Revision as of 16:45, 30 November 2011

Converts any number within a given range into a percentage value, based on its position within the range. In this case, the number is a longitude value, which is converted to an integer between 12528 and 41285.

Heavily commented for your viewing pleasure. <source lang=python>

import re

      1. convert longitude into 5 digit integer

longitude = str(001.2528) # must be a string for regex to work longint = int(re.sub("\.", "", longitude)) # removes decimal point and converts back to an integer

      1. convert integer into percentage of given range
  1. converts longitude into a percentage, where 1.2528 = 0% and 4.1285 = 100%
  2. range between numbers is 28703, so 1% of range is 28703/100 ---> 287.03. Longitude equivalent to 1% will be 12528 + (28703/100)
  3. thus to convert longitude to percentage, work out its distance from 12528 and divide this distance by 287.03.

percent = int((longint - 12528) / 287.03) </script>