ÿþ<html> <title>GISEYE Coordinate Converter</title> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <style type="text/css">.button-standard{WIDTH: 70px;}</style> <style type="text/css">.button-non-standard{WIDTH: 100px;}</style> <script type="text/javascript"> function ShowDialog(isOpen) { if (isOpen == true) return MagicProj1.ShowOpen(); else return MagicProj1.ShowSave(); } function LoadFrom() { var FileName = ShowDialog(true); if (FileName != "") MagicProj1.LoadMPP(FileName); } function SaveFrom() { var FileName = ShowDialog(false); if (FileName != "") MagicProj1.SaveMPP(FileName); } function LoadTo() { var FileName = ShowDialog(true); if (FileName != "") MagicProj2.LoadMPP(FileName); } function SaveTo() { var FileName = ShowDialog(false); if (FileName != "") MagicProj2.SaveMPP(FileName); } function Inverse() { var temp = MagicProj1.GetTempPath(); var csFileFrom = temp + "FromProj.prj"; var csFileTo = temp + "ToProj.prj"; MagicProj1.SaveMPP(csFileFrom); MagicProj2.SaveMPP(csFileTo); MagicProj1.LoadMPP(csFileTo); MagicProj2.LoadMPP(csFileFrom); } function Left() { var temp = MagicProj1.GetTempPath(); var csFileTo = temp + "ToProj.prj"; MagicProj2.SaveMPP(csFileTo); MagicProj1.LoadMPP(csFileTo); } function Right() { var temp = MagicProj1.GetTempPath(); var csFileFrom = temp + "FromProj.prj"; MagicProj1.SaveMPP(csFileFrom); MagicProj2.LoadMPP(csFileFrom); } function AddPoint() { MagicPoint1.AddValue(0,0); } function LoadPoints() { MagicPoint1.LoadCoord(); } function SavePoints() { MagicPoint1.SaveCoord(); } function SaveResults() { MagicPoint2.SaveCoord(); } function Convert() { var temp = MagicProj1.GetTempPath(); var csFileCoord = temp + "Coord.txt"; MagicPoint1.SimpleSaveCoord(csFileCoord); var csProjFrom = MagicProj1.GetPROJ4(); var csProjTo = MagicProj2.GetPROJ4(); MagicProj1.ConvertCoordFromFile(csProjFrom,csProjTo,csFileCoord); MagicPoint2.Clear(); MagicPoint2.SimpleLoadCoord(csFileCoord); } var isIE = true; function CheckBrowser() { var BrowserCheckTxt; var bt = document.getElementById("BrowserTable"); var bc = document.getElementById("BrowserCheck"); var startl = document.getElementById("StartLayer"); document.getElementById("msg1_shadow").style.visibility = "visible"; document.getElementById("msg1_header").style.visibility = "visible"; if (navigator.appName != "Microsoft Internet Explorer") { BrowserCheckTxt = "Please, install Microsoft Internet Explorer 6.0 or higher to use our service."; isIE = false; document.getElementById("BrowserChkImg").src = "error_button.png"; bc.innerHTML = BrowserCheckTxt; startl.style.visibility = bt.style.visibility = bc.style.visibility = "visible"; } else { isIE = true; } } function CheckOcx() { var OcxCheckTxt; var isOcxOk = true; var ot = document.getElementById("BrowserTable"); var oc = document.getElementById("BrowserCheck"); if (isIE) { document.getElementById("msg1_header").innerHTML = "<b>Required ActiveX Components</b>"; try { MagicPoint1.Clear(); OcxCheckTxt = ""; } catch (e) { OcxCheckTxt = "Please, install required components and refresh."; isOcxOk = false; } try { var temp = MagicProj1.GetTempPath(); OcxCheckTxt += ""; } catch (e) { if (OcxCheckTxt == "") OcxCheckTxt = "Please, install required components and refresh."; else OcxCheckTxt = "Please, install required components and refresh."; isOcxOk = false; } if (isOcxOk) { document.getElementById("StartLayer").style.visibility = "hidden"; document.getElementById("BrowserTable").style.visibility = "hidden"; document.getElementById("BrowserCheck").style.visibility = "hidden"; ot.style.visibility = oc.style.visibility = "hidden"; document.getElementById("msg1_shadow").style.visibility = "hidden"; document.getElementById("msg1_header").style.visibility = "hidden"; document.getElementById("CCOLayer").style.visibility = "visible"; } else { document.getElementById("BrowserChkImg").src = "error_button.png"; ot.style.visibility = oc.style.visibility = "visible"; oc.innerHTML = OcxCheckTxt; document.getElementById("Refresh").style.visibility = "visible"; document.getElementById("DownloadNow").style.visibility = "visible"; } } } function OnLoad() { CheckBrowser(); CheckOcx(); } function OnTryAgain() { location.reload(); } function OnDownloadNow() { window.location = 'CCO_Setup.zip'; document.getElementById("OcxTable").style.visibility = "visible"; document.getElementById("msg2_shadow").style.visibility = "visible"; document.getElementById("msg2_header").style.visibility = "visible"; } function GetBrowserName() { var nVer = navigator.appVersion; var nAgt = navigator.userAgent; var browserName = navigator.appName; var fullVersion = '' + parseFloat(navigator.appVersion); var majorVersion = parseInt(navigator.appVersion, 10); var nameOffset, verOffset, ix; // In MSIE, the true version is after "MSIE" in userAgent if ((verOffset = nAgt.indexOf("MSIE")) != -1) { browserName = "Microsoft Internet Explorer"; fullVersion = nAgt.substring(verOffset + 5); } // In Opera, the true version is after "Opera" else if ((verOffset = nAgt.indexOf("Opera")) != -1) { browserName = "Opera"; fullVersion = nAgt.substring(verOffset + 6); } // In Chrome, the true version is after "Chrome" else if ((verOffset = nAgt.indexOf("Chrome")) != -1) { browserName = "Chrome"; fullVersion = nAgt.substring(verOffset + 7); } // In Safari, the true version is after "Safari" else if ((verOffset = nAgt.indexOf("Safari")) != -1) { browserName = "Safari"; fullVersion = nAgt.substring(verOffset + 7); } // In Firefox, the true version is after "Firefox" else if ((verOffset = nAgt.indexOf("Firefox")) != -1) { browserName = "Mozilla Firefox"; fullVersion = nAgt.substring(verOffset + 8); } // In most other browsers, "name/version" is at the end of userAgent else if ( (nameOffset = nAgt.lastIndexOf(' ') + 1) < (verOffset = nAgt.lastIndexOf('/')) ) { browserName = nAgt.substring(nameOffset, verOffset); fullVersion = nAgt.substring(verOffset + 1); if (browserName.toLowerCase() == browserName.toUpperCase()) { browserName = navigator.appName; } } // trim the fullVersion string at semicolon/space if present if ((ix = fullVersion.indexOf(";")) != -1) fullVersion = fullVersion.substring(0, ix); if ((ix = fullVersion.indexOf(" ")) != -1) fullVersion = fullVersion.substring(0, ix); majorVersion = parseInt( '' + fullVersion, 10); if (isNaN(majorVersion)) { fullVersion = '' + parseFloat(navigator.appVersion); majorVersion = parseInt(navigator.appVersion, 10); } return browserName + " " + fullVersion; } </script> </head> <body onload="OnLoad()" style="overflow-y:scroll; overflow-x: hidden;"> <OBJECT CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331" VIEWASTEXT> <param name="LPKPath" value="GeneralLicense.lpk"> </OBJECT> <div align="center"> <table border="0" width="666" id="table4" style="border-collapse: collapse;"> <tr> <td> <img border="0" src="Header.gif"></td> <td align="right"> <img border="0" src="FreeOnline.PNG" width="182" height="36"></td> </tr> </table> </div> <div id="StartLayer" style="z-index: -1; padding:6px; margin-left:auto; margin-right:auto; visibility:visible"> <div align="center" id="msg1_shadow" style='z-index: 0; background: transparent url(msgbox_shadow2.png) center no-repeat; float: right; height: 190px; width: 100%; visibility:hidden;'> <div align="center" style="z-index: 1; padding: 13px; 13px"> <div id="msg1_header" style="background: url(msgbox_header.png) no-repeat top center; width:656px; height:26px; visibility:hidden; font-family:Arial; font-size:10pt"> <b>Required Internet Browser</b> </div> <table height="140px" id="BrowserTable" style="border-collapse: collapse; width:656px; visibility:hidden; background-color:threedface"> <tbody> <tr> <td width="30%" align="center"><img id="BrowserChkImg" src="" style=""/></td> <td id="BrowserCheck" height="140px" style="font-family:Arial; font-size:10pt; position:relative; top:-15px; "></td> </tr> </tbody> </table> </div> </div> <div align="center" style="position:relative; top:-60px; right:30px"> <div style="width:652px;" align="right"> <input id="DownloadNow" type="button" class="button-non-standard" value="Download now" style="visibility:hidden;" onclick="OnDownloadNow()"/> <input id="Refresh" type="button" class="button-non-standard" value="Refresh" style="visibility:hidden;" onclick="OnTryAgain()"/> </div> </div> <div align="center" id="msg2_shadow" style='z-index: 0; background: transparent url(msgbox_shadow.png) center no-repeat; float: right; height: 250px; width: 100%; visibility:hidden;'> <div align="center" style="z-index: 1; padding: 13px; 13px"> <div id="msg2_header" style="background: url(msgbox_header.png) no-repeat top center; width:656px; height:26px; visibility:hidden; font-family:Arial; font-size:10pt"> <b>Components Activation</b> </div> <table height="200" id="OcxTable" style="border-collapse: collapse; width:656px; visibility:hidden; background-color:threedface" cellpadding="10"> <tbody> <tr> <td width="30%" align="center"><img id="Img1" src="help.png" style=""/></td> </tr> <tr> <td id="OcxCheck" align="center" style="font-family:Arial; font-size:10pt"> Please right click on the Internet Explorer Information Bar on the top of the page and <br>choose "Run Add-on" from the context menu three times to enable the add-ons from the page. </td> </tr> </tbody> </table> </div> </div> </div> <div id="CCOLayer" style="z-index: -2; position:absolute; top:50px; margin-left:auto; margin-right:auto; visibility:hidden"> <div align="center" style='z-index: 100; background: transparent url(shadow.png) center no-repeat; float: right; height: 473px; width: 100%;'> <div align="center" style='z-index: 200; padding: 18px 18px; width: 656px; height: 455px;'> <table border="0" width="656" height="300" id="table2" style="border-collapse: collapse;" bgcolor="ThreeDFace"> <tr > <td width="8"></td> <td width="640"> <!--main table--> <table border="0" id="table3" style="border-collapse: collapse" align="center" bgcolor="ThreeDFace"> <tr> <td width="640" colspan="9" height="5"></td> </tr> <tr> <td width="270" colspan="4">From:</td> <td width="100"></td> <td width="270" colspan="4">To:</td> </tr> <tr> <td id="MagicProj1TD" width="270" rowspan="10" colspan="4"> <p align="center"> <object classid="clsid:8F4ACC9D-DF12-4A61-B711-BC8043522991" id="MagicProj1" width="270" height="218"></object> </td> <td width="100"></td> <td id="MagicProj2TD" rowspan="10" width="270" colspan="4"> <p align="center"> <object classid="clsid:8F4ACC9D-DF12-4A61-B711-BC8043522991" id="MagicProj2" width="270" height="218"></object> </td> </tr> <tr> <td></td> </tr> <tr> <td> <p align="center"> <input type="button" value="<<" name="B1" class="button-standard" onclick="Left()"> </td> </tr> <tr> <td> <p align="center"> <input type="button" value=">>" name="B2" class="button-standard" onclick="Right()"> </td> </tr> <tr> <td> <p align="center"> <input type="button" value="<< >>" name="B3" class="button-standard" onclick="Inverse()"> </td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td width="130" colspan="2">&nbsp;</td> <td width="70"><input type="button" value="Load" name="B4" class="button-standard" onclick="LoadFrom()"></td> <td width="70"><input type="button" value="Save" name="B5" class="button-standard" onclick="SaveFrom()"></td> <td>&nbsp;</td> <td width="130" colspan="2">&nbsp;</td> <td width="70"><input type="button" value="Load" name="B6" class="button-standard" onclick="LoadTo()"></td> <td width="70"><input type="button" value="Save" name="B7" class="button-standard" onclick="SaveTo()"></td> </tr> <tr> <td width="270" colspan="4">&nbsp;</td> <td>&nbsp;</td> <td width="270" colspan="4">&nbsp;</td> </tr> <tr> <td width="270" colspan="4">Coordinates (meters):</td> <td>&nbsp;</td> <td width="270" colspan="4">Coordinates (meters):</td> </tr> <tr> <td id="MagicPoint1TD" width="270" colspan="4" rowspan="5"> <object classid="clsid:6467283D-AB7D-4F49-B12A-DDD67BB2E35C" id="MagicPoint1" width="270" height="106"></object> </td> <td>&nbsp;</td> <td id="MagicPoint2TD" width="270" colspan="4" rowspan="5"> <object classid="clsid:6467283D-AB7D-4F49-B12A-DDD67BB2E35C" id="MagicPoint2" width="270" height="106"></object> </td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td width="60">&nbsp;</td> <td width="70"> <input type="button" value="Add" name="B8" class="button-standard" onclick="AddPoint()"></td> <td width="70"> <input type="button" value="Load" name="B9" class="button-standard" onclick="LoadPoints()"></td> <td width="70"> <input type="button" value="Save" name="B10" class="button-standard" onclick="SavePoints()"></td> <td>&nbsp;</td> <td width="60">&nbsp;</td> <td width="70"> <input type="button" value="Help" name="B14" class="button-standard" onclick="window.open('CoordinateConverter_Manual.pdf', 'download')"></td> <td width="70"> <input type="button" value="Convert" name="B13" class="button-standard" onclick="Convert()"></td> <td width="70"> <input type="button" value="Save" name="B12" class="button-standard" onclick="SaveResults()"></td> </tr> <tr> <td colspan="9" height="5"></td> </tr> </table> <!-- main table end--> </td> <td width="8"></td> </tr> </table> </div> </div> <div align="center"> <table border="0" width="656" id="table4" style="border-collapse: collapse;"> <tr> <td align="left"><font face="Arial Unicode MS" size="1"> <a href="http://www.giseye.com">GISEYE</a> Software Online</font></td> <td align="right"><font size="1" face="Arial Unicode MS">(C) <a href="http://www.scanex.com">RDC ScanEx</a>. All Rights Reserved</font></td> </tr> <tr> <td>&nbsp;</td> </tr> </table> <div align="center"> <table border="0" width="800" id="table7" style="border-collapse: collapse;"> <tr> <td> <a href="http://www.giseye.com/?page_id=18"> <img border="0" src="Box8.jpg" width="98" height="95" title="5@5AG5B :>>@48=0B 87 >4=>9 :0@B>3@0D8G5A:>9 ?@>5:F88 2 4@C3CN"></a></td> <td><a href="http://www.giseye.com/?page_id=18"><img border="0" src="Box9.jpg" width="93" height="96" title="0:5B=0O :>=25@B0F8O @0AB@>2KE D09;>2 87 >4=>3> D>@<0B0 E@0=5=8O 2 4@C3>9"></a></td> <td><a href="http://www.giseye.com/?page_id=18"><img border="0" src="Box10.jpg" width="94" height="93" title="0:5B=0O :>=25@B0F8O 25:B>@=KE 40==KE 87 >4=>3> D>@<0B0 2 4@C3>9, >1J548=5=85 8 ?5@5?@>5F8@>20=85 25:B>@=KE 40==KE"></a></td> <td><a href="http://www.giseye.com/?page_id=18"><img border="0" src="Box11.jpg" width="96" height="95" title="KAB@0O :>=25@B0F8O @07;8G=KE B8?>2 40==KE 87 >4=>3> D>@<0B0 ?@54AB02;5=8O 2 4@C3>9"></a></td> <td><a href="http://www.giseye.com/?page_id=18"><img border="0" src="Box12.jpg" width="101" height="96" title=">72>;O5B @07@010BK20BL A>1AB25==K5 ?@8;>65=8O, 2 :>B>@KE B@51C5BAO 7040=85 ?>;L7>20B5;5< ?0@0<5B@>2 :0@B>3@0D8G5A:8E ?@>5:F89 8 <5E0=87< ?5@5AG5B0 :>>@48=0B 87 >4=>9 ?@>5:F88 2 4@C3CN"></a></td> <td><a href="http://www.giseye.com/?page_id=18"><img border="0" src="Box13.jpg" width="105" height="96" title="01>@ A?5F80;878@>20==KE ActiveX :><?>=5=B, ?>72>;ONI8E ?@>5:B8@>20BL ?>;L7>20B5;LA:85 3@0D8G5A:85 8=B5@D59AK A>1AB25==KE 35>8=D>@<0F8>==KE A8AB5<"></a></td> <td><img border="0" src="Box15.jpg" width="105" height="102" title="0:5B=0O 35=5@0F8O :28:;C:>2 87>1@065=89 A 7040==K< B8?>< :><?@5AA88 8 A?>A>1>< C:;04:8 @0AB@0"></td> </tr> <tr> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.giseye.com/?page_id=18">GISEYE<br> Coordinate Converter</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.giseye.com/?page_id=18">GISEYE<br> Raster Converter</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.giseye.com/?page_id=18">GISEYE<br> Vector Converter</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.giseye.com/?page_id=18">GISEYE<br> Value Converter</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.giseye.com/?page_id=18">GISEYE<br> Map Projection</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.giseye.com/?page_id=18">GISEYE<br> GIS Development Kit</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.giseye.com/?page_id=18">GISEYE<br> QuickLook Generator</a></font></td> </tr> <tr><td height="10px"></td> </tr> <tr> <td> <a href="http://www.scanex.ru/en/software/default.asp?submenu=scanmagic&id=index"> <img border="0" src="Box1.jpg" width="94" height="97" title="53:>5 2 8A?>;L7>20=88 ?@8;>65=85 4;O ?@>A<>B@0, 0=0;870 8 >1@01>B:8 40==KE "></a></td> <td> <a href="http://www.scanex.ru/en/software/default.asp?submenu=imageprocessor&id=index"><img border="0" src="Box2.jpg" width="95" height="99" title="#3;C1;5==0O >1@01>B:0 40==KE  8 A>740=85 B5<0B8G5A:8E ?@>4C:B>2"></a></td> <td> <a href="http://www.scanex.ru/en/software/default.asp?submenu=sar&id=index"><img border="0" src="Box3.jpg" width="98" height="101" title="1@01>B:0 40==KE :0=04A:>3> @048>;>:0B>@0 A A8=B578@>20==>9 0?5@BC@>9 RADARSAT-1"></a></td> <td> <a href="http://www.scanex.ru/en/software/default.asp?submenu=envisatsar&id=index"><img border="0" src="Box4.jpg" width="98" height="96" title="1@01>B:0 40==KE 52@>?59A:>3> @048>;>:0B>@0 A A8=B578@>20==>9 0?5@BC@>9 ENVISAT-1"></a></td> <td> <a href="http://www.scanex.ru/en/software/default.asp?submenu=spotprocessor&id=index"><img border="0" src="Box5.jpg" width="102" height="100" title="1@01>B:0 40==KE , ?@8=8<05<KE A D@0=FC7A:8E A?CB=8:>2 SPOT"></a></td> <td> <p align="center"> <a href="http://www.scanex.ru/en/software/default.asp?submenu=taskflow&id=index"> <img border="0" src="Box6.jpg" width="105" height="100" title="@8;>65=85 4;O 02B><0B870F88 <=>3>ABC?5=G0B>9 ?0:5B=>9 >1@01>B:8 40==KE"></a></td> <td><img border="0" src="Box7.jpg" width="88" height="99" title="0:5B=0O B@0=AD>@<0F8O 87>1@065=89 87 >4=>9 :0@B>3@0D8G5A:>9 ?@>5:F88 2 4@C3CN, A>740=85 <>708: 87>1@065=89"></td> </tr> <tr> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.scanex.ru/en/software/default.asp?submenu=scanmagic&id=index">ScanMagic</a></font></td> <td align="center"> <p align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.scanex.ru/en/software/default.asp?submenu=imageprocessor&id=index">ScanEx<br> Image Processor</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.scanex.ru/en/software/default.asp?submenu=sar&id=index">ScanEx<br> RADARSAT Processor</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.scanex.ru/en/software/default.asp?submenu=envisatsar&id=index">ScanEx<br> ENVISAT Processor</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.scanex.ru/en/software/default.asp?submenu=spotprocessor&id=index">ScanEx<br> SPOT Processor</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.scanex.ru/en/software/default.asp?submenu=taskflow&id=index">ScanEx<br> TaskFlow</a></font></td> <td align="center"><font face="Arial Unicode MS" size="1"> <a href="http://www.giseye.com/?page_id=18">GISEYE<br> Image Transformer</a></font></td> </tr> </table> </div> </div> <div align="center"> <table border="0" width="1000" id="table5" style="border-collapse: collapse;"> <tr> <td colspan="7" align="center"> <a href="http://www.tinycounter.com" target="_blank" title="hit counter"><img border="0" alt="hit counter" src="http://mycounter.tinycounter.com/index.php?user=sumiregawa"></a> </td> </tr> </table> </div> </div> <!-- Start of StatCounter Code --> <script type="text/javascript"> var sc_project=5221821; var sc_invisible=1; var sc_partition=59; var sc_click_stat=1; var sc_security="3d653f3d"; </script> <script type="text/javascript" src="http://www.statcounter.com/counter/counter.js"></script><noscript><div class="statcounter"><a title="blogspot hit counter" href="http://www.statcounter.com/blogger/" target="_blank"><img class="statcounter" src="http://c.statcounter.com/5221821/0/3d653f3d/1/" alt="blogspot hit counter" ></a></div></noscript> <!-- End of StatCounter Code --> </body> </html>