⚲
Project
General
Profile
Sign in
Register
Home
Projects
Imprint + Privacy Policy
Help
Search
:
CDO
All Projects
CDO
Overview
Activity
News
Wiki
Forums
Files
Documentation
Download (318 Bytes)
RE: Loop "remapnn" command for many locations
ยป run.sh
Ralf Mueller
, 2019-03-29 09:43
while
read
n
;
do
echo
$n
;
latmax
=
$(
echo
$n
|
cut
-d
','
-f
2
)
;
latmin
=
$(
echo
$n
|
cut
-d
','
-f
3
)
;
lonmax
=
$(
echo
$n
|
cut
-d
','
-f
4
)
;
lonmin
=
$(
echo
$n
|
cut
-d
','
-f
5
)
;
cdo
-f
nc sellonlatbox,
${
lonmin
}
,
${
lonmax
}
,
${
latmin
}
,
${
latmax
}
-topo
outfile
$(
echo
$n
|
tr
','
'_'
)
.nc
;
done
< coordextended2.csv
(1-1/1)
Loading...