<div>Hi,&nbsp;I have *.jpg of a map and want to get lat\lon of mouse position on *.jpg.<br>I know the *.jpg file size (ex. 1024x768) and *.jpg lat\lon&nbsp;top_left corner(ex. N2030,320,E01015,400)<br>and bottom_right corner(ex.N1030,220,E01814,300 )<br>
I do this as below code.<br>How to do this with proj4 lib or another more efficient way.<br>(if ı use another *.jpg of map projections different from mercator below code wil be fail.(?)&nbsp; )</div>
<p><br>QString Map::Y2Lat(int Y_size_of_image)//Y_size of jpg ( 768 )<br>{</p>
<div>//distVincenty(lat1,long1,lat2,long2) returns distance in NM.&nbsp; <br>//here give long same because , want to know *.jpg y size in real.<br>double YRealDist = distVincenty(&quot;2030,320&quot;,&quot;N&quot;,&quot;01015,400&quot;,&quot;E&quot;, &quot;1030,220&quot;,&quot;N&quot;,&quot;01015,400&quot;,&quot;E&quot;);</div>

<div><br>double YPerPixel=YRealDist/Y_size_of_image;// real distance per pixel of image</div>
<div><br>double convfaktor=YPerPixel*currentMousePosY;//real distance from top to current mouse pos.</div>
<div><br>//gives destination lat&nbsp; from top_left&nbsp; convfaktor miles with course 180<br>QString newLatLon = destinationVincenty(&quot;2030,320&quot;,&quot;N&quot;,&quot;01015,400&quot;,&quot;E&quot;,180.,convfaktor);<br>QString Latitude =toDMS(newLatLon.toDouble(),&quot;NS&quot;);</div>

<div><br>qDebug()&lt;&lt;&quot;Current mouse position Lat = &quot;&lt;&lt; Latitude ;<br>return Latitude;</div>
<div>} </div>
<div><br>QString Map::X2Long(int X_size_of_image)//X_size of jpg ( 1024 )<br>{</div>
<div>double top_left_lon = dm2dd(&quot;01015,400&quot;,&quot;E&quot;);//long in degree</div>
<div><br>double bottom_right_lon = dm2dd(&quot;01814,300&quot;,&quot;E&quot;);//long in degree</div>
<div><br>double XRealDist=(bottom_right_lon-top_left_lon)*60.;//using mercator map 1 degree 60 miles</div>
<div><br>double XPerPixel=XRealDist/X_size_of_image;</div>
<div><br>double convfaktor=XPerPixel*currentPosX;//top left to mouse pos distance in X</div>
<div><br>double newLong=top_left_lon + convfaktor/60.;</div>
<div><br>QString Long=toDMS(newLong,&quot;EW&quot;);</div>
<div><br>qDebug()&lt;&lt;&quot;Current mouse position Long = &quot;&lt;&lt; Long ;<br>return Long;</div>
<p>}</p>