Table 7
Listing of the sastm retrieval code to read and print the radiocarbon data for the Atlantic, Pacific, and Indian Oceans, ndp027.atl, ndp027.pac, and ndp027.ind (ndp027.sas).
data ndp027;
infile 'a:ndp027.ind';
input @1 x $char2. @@;
if x ne ' ' then
input mrec 1-2 nation $ 3-5 rosid 14-16 sq 17-22 onesq 23-24
twosq 25-26 fivesq 27 lathem $ 28 @29 lat $char5. lonhem $ 34
@35 long $char7. year 42-43 month 44-45 day 46-47 @48 code $char9.
bdepth 57-61 odepth 62-74 sdepth 75-78 / @1 cruise $char17.
statn $char9. numobs 60-63 numdet 66-68;
input cast 1-4 bottle 5-6 depth 7-13 temp 14-21 salin 22-29
c14 30-37 carb14 38-45;
proc print;
run;