Hi,
Any idea on how to convert a julian date format into "2004/05/26".
My script:
awk '{
for (e=1;e<NF;e++){if ($e~/BasicInfo1/)
{printf "%s %s %15s %s\n" ,$(e+2) ,$11, $16,$13
}
}
}' |
awk '{
hexstr="0123456789abcdef"
newnum=tolower(substr($4,5,2) substr($4,3,2) substr($4,1,2))
JD=JDATE_CAL $11
Many Thanks
Chris
Any idea on how to convert a julian date format into "2004/05/26".
My script:
awk '{
for (e=1;e<NF;e++){if ($e~/BasicInfo1/)
{printf "%s %s %15s %s\n" ,$(e+2) ,$11, $16,$13
}
}
}' |
awk '{
hexstr="0123456789abcdef"
newnum=tolower(substr($4,5,2) substr($4,3,2) substr($4,1,2))
JD=JDATE_CAL $11
Many Thanks
Chris