source: trunk/INPUT/GREENMINT40/lonlat_2_xy.gmt

Last change on this file was 4, checked in by dumas, 10 years ago

initial import GRISLI trunk

File size: 430 bytes
Line 
1#!/bin/bash
2
3filin=$1
4
5# petit shell pour transformer lon lat de la grille EISMINT en xy
6# pour tracer dans la projection :
7# pscoast -Js-40/90/71/1:20000000  -R/-55/55/50/75r -C  -G150 -Bg5a10  -P > POST
8
9tail +3 $filin | awk '{print $4,$3}' |mapproject -Js-40/90/71/1:20000000  -C -Fk -R/-55/55/50/75r  > toto
10
11tail +3 $filin | awk '{print $1,$2,$4,$3}' > titi
12paste titi toto > tata
13awk '{print $1,$2,$5,$6,$3,$4}' tata > tutu
Note: See TracBrowser for help on using the repository browser.