Read a binary file created by windsyn and save to a NetCDF formatted file


In [1]:
# Load the needed packages
from glob import glob
import os
import awot

In [2]:
# Set the project name
Project="DYNAMO"

# Choose what file to process
yymmdd, modn = '030610', '0528hn'

# Set the data directory
fDir = "/Users/guy/data/bamex/radar/"

# Construct the full path name for windsyn NetCDF file
P3Radf = os.path.join(fDir, yymmdd, modn)

# Get the tail radar data
radar = awot.io.read_windsyn_binary(fname=P3Radf, platform='p-3')

awot.io.radar2nc(radar, Outfile='dynamo_'+yymmdd+'_'+modn)


Guessing that instrument is TDR, this can be set with platform keyword

In [ ]: