라벨이 convert인 게시물 표시

ubunt convert utm to WGS84

<UTM to WGS84> NAME utm2ll - Convert UTM coordinates to latitude/longitude geographical coordinates SYNOPSIS utm2ll [-L] | [utm_x utm_y zone [nad27 | nad83 | wgs84]] ex)utm2ll 431400 3990390 52 wgs84 <WGS84 to UTM> NAME ll2utm - Convert latitude/longitude geographical coordinates to UTM coordinates SYNOPSIS ll2utm [-L] | [latitude longitude [nad27 | nad83 | wgs84]] ex)ll2utm 36.05565665 128.2383285  wgs84 *ubuntu 12.04에서는 utm2ll이 설치해도 되지 않는다.  아래와 같이 해결한다. Workaround, and single command fix (exclusive of bulding) patch for package maintainers: cd /usr/local/src sudo mkdir drawmap cd drawmap sudo apt-get source drawmap sudo apt-get build-dep drawmap cd drawmap-2.5/ sudo bash -c 'echo "utm2ll usr/bin/" >>debian/install' sudo DEBFULLNAME="Your name <your@email>" dch -i "Added utm2ll to the file install list" sudo dpkg-build...