rss

Topic: makemymap need an improvement

Page 1
posts 1–5 of 5
?
2 posts

I tried to load a map not from GE but made by myself.
I calculated the coordinates of the corners (what a pain!) and entered them into the fields, but the button "Start" remained disabled...
I had wasted more then hour on the calculations. :(
It would be great if the utility accepts not the corners coordinates but the pixel positions and the coordinates of key objects on the image and then calculate the coordinates it need itself. Thank you in advance!

?
60 posts
This http://users.bigpond.net.au/ian_pendlebury/makemapsetup14.exe should solve the Start button problem.
Co-ordinates at pixel positions? Good idea. Next time I get some time I will investigate.
?
2 posts

Thank you, I'll give the new version a try.
If you like the idea of calculating the corner coordinates from pixel positions, and going to implement it, I hope you could spare some time using my simple code I wrote to make my calculations:

int x1;
int y1;
double lon1;
double lat1;
int x2;
int y2;
double lon2;
double lat2;
int w;
int h;

int dx = x2 - x1;
int dy = y2 - y1;
if( dx == 0 || dy == 0 ) return;

double kx = ( lon2 - lon1 ) / dx;
double ky = ( lat2 - lat1 ) / dy;

double lon_right = ( w - x1 ) * kx + lon1;
double lon_left = lon2 - x2 * kx;

double lat_bottom = ( h - y1 ) * ky + lat1;
double lat_top = lat2 - y2 * ky;

?
1 posts

I have the same problem, co-ordinates are carried with an error and the button Start is not active. Version 1.41 of map creation tool got
from this page of http://users.bigpond.net.au/ian_pendlebury/mymad.htm, because reference of http://users.bigpond.net.au/ian_pendlebury/makemapsetup14.exe
not opened. A help is required. Thank you.
You will excuse me for my English, use an automatic translator.

?
60 posts

Make sure you have v1.41 (it should say 1.41 in the title bar). Start button problems were fixed in v1.41.

I moved the link above to be the main (latest) version, as I don't have enough web space to keep multiple versions.

Page 1
posts 1–5 of 5

This Topic Is Locked To Guest Posts

It's been a while since this topic was active, if you'd like to get it going again, please post as a registered member

join now