#TDF to ascii, fuer NOAA 11 + 14 Files mit Geoinformationen; "angles": Hängt an die #bestehenden 5 Channel 2 weiterer (synthetische) Channel an (Latitude, Longitude); #"EXPASC" export den TDF File incl. der Geoinfos ins ASCII Format. #08.01.02 #! /bin/csh -fx cd /usr/data/maroc/masked_files/ohne_meer/ #cd /usr/data/maroc/ foreach file (noaa-14_utm.wgs84_????.??.??.??.????.??.??) angles \ latitude='yes' \ longitude='yes' \ sat_zenith='n' \ sun_zenith='n' \ scatter_phase='n' \ sun_reflection='n' \ rel_azimuth='n' \ store_cosines='n' \ real_output='y' \ poly_size='100' \ $file expasc \ include_vars='latitude longitude avhrr_ch1 avhrr_ch2 avhrr_ch3 avhrr_ch4 avhrr_ch5'\ all_same_dim='yes'\ list_dims='no'\ $file \ $file.export echo removing null data points sed '/\*\*\*/s//0/g' $file.export >$file.idl rm $file.export #mv $file.idl /usr/data/maroc/ end