![]() |
2010-05-15
, 08:41
|
Posts: 169 |
Thanked: 149 times |
Joined on Mar 2010
|
#62
|
I took the latest version out for a spin this afternoon. After I'd found the clue to the cache location I tried out the AGTL coord calculator. I noticed that where people have 'x' as the multiply symbol then the calculator expects it as a numerical value.
I added the following at line 172 of coordfinder.py (in the find function) to replace all lower case 'x' with '*' instead
text = text.replace('x', '*')
It fixes the problem nicely but there may be a more elegant solution.
Webhamster - Thanks again for the ever improving app
![]() |
2010-05-15
, 09:01
|
Posts: 19 |
Thanked: 3 times |
Joined on May 2010
|
#63
|
Hi!
I do not recommend this fix, as it works only as long as you don't have a cache where x is used as a variable.
I consider a feature where you can enter/edit coord. calculations manually...
![]() |
2010-05-15
, 09:45
|
Posts: 169 |
Thanked: 149 times |
Joined on Mar 2010
|
#64
|
![]() |
2010-05-17
, 18:40
|
Posts: 169 |
Thanked: 149 times |
Joined on Mar 2010
|
#65
|
The Following 2 Users Say Thank You to webhamster For This Useful Post: | ||
![]() |
2010-05-19
, 15:20
|
Posts: 169 |
Thanked: 149 times |
Joined on Mar 2010
|
#66
|
![]() |
2010-05-28
, 17:41
|
Posts: 169 |
Thanked: 149 times |
Joined on Mar 2010
|
#67
|
The Following User Says Thank You to webhamster For This Useful Post: | ||
![]() |
2010-06-01
, 08:21
|
Posts: 7 |
Thanked: 1 time |
Joined on Jan 2010
|
#68
|
![]() |
2010-06-02
, 08:27
|
Posts: 169 |
Thanked: 149 times |
Joined on Mar 2010
|
#69
|
![]() |
2010-06-04
, 08:14
|
Posts: 18 |
Thanked: 4 times |
Joined on Jun 2010
@ Switzerland
|
#70
|
I added the following at line 172 of coordfinder.py (in the find function) to replace all lower case 'x' with '*' instead
text = text.replace('x', '*')
It fixes the problem nicely but there may be a more elegant solution.
Webhamster - Thanks again for the ever improving app