AER-RC / LBLRTM

Line-By-Line Radiative Transfer Model by Atmospheric and Environmental Research
Other
86 stars 28 forks source link

How to read TAPE11 and TAPE12 wtih matlab or python? #59

Open StarsTravel opened 6 months ago

StarsTravel commented 6 months ago

How to read TAPE11 and TAPE12 files with matlab or python? 1715244629354

pernak18 commented 6 months ago

@StarsTravel first do a git clone https://github.com/AER-RC/common.git or git clone git@github.com:AER-RC/common.git. then, assuming your TAPE11 or TAPE12 is in the same directory as the common clone:

sys.path.append('common')
import RC_utils as RC

wn, rad = RC.readBinary('TAPE12')
StarsTravel commented 6 months ago

@pernak18 thank you,I will try