⚲
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 (232 Bytes)
RE: Loop "remapnn" command for many locations
» script.sh
Christ Reflin
, 2023-03-07 03:47
#!/usr/bin/bash
while
read
p
;
do
echo
$p
;
lon
=
$(
echo
$p
|
cut
-d
','
-f
2
)
;
lat
=
$(
echo
$p
|
cut
-d
','
-f
3
)
;
cdo
-outputtab
,date,lon,lat,value
-remapnn
,lon
=
${
lon
}
_lat
=
${
lat
}
-topo
>
$extracted
.txt
done
<coordinate.txt
« Previous
1
2
3
Next »
(3-3/3)
Loading...