Search found 55 matches
- March 25th, 2021, 8:50 am
- Forum: MeteoInfo Software
- Topic: MeteoInfoLab script - convert ARL or concentration data to netCDF
- Replies: 2
- Views: 5116
Re: MeteoInfoLab script - convert ARL or concentration data to netCDF
Please refer to the code here: http://www.meteothink.org/examples/mete ... t2arl.html
- October 16th, 2020, 11:00 am
- Forum: MeteoInfo Software
- Topic: Bugfixed for sub-hourly time resolution ARL data reading
- Replies: 0
- Views: 1729
Bugfixed for sub-hourly time resolution ARL data reading
In new released MeteoInfo 2.3.3, the bug for data extraction from sub-hourly ARL data (such as 10 minutes time resolution) was fixed. Also new version can read big ARL data structure much faster. In fact, ARL data label has no minute parameter to get right time stamp directly. For example, there are...
- August 4th, 2020, 9:31 am
- Forum: Conversion programs
- Topic: Segmentation fault using era52arl
- Replies: 16
- Views: 6367
Re: Segmentation fault using era52arl
You can check this topic for converting ERA5 to ARL data format: viewtopic.php?f=30&t=1778 .
- July 28th, 2020, 8:14 am
- Forum: Users
- Topic: Spatial extent of WRF 27km ARL packed data
- Replies: 1
- Views: 1131
Re: Spatial extent of WRF 27km ARL packed data
You can try to use MeteoInfo to read ARL packed data.
- June 26th, 2020, 1:37 am
- Forum: MeteoInfo Software
- Topic: Accommodation for no-leap calendars
- Replies: 1
- Views: 1042
Re: Accommodation for no-leap calendars
I have no experience on no-leap canlendar, but I think hysplit need leap day as your testing result. So you need to convert no-leap canlendar to Gregorian calendar before writing the time in ARL data. In fact, MeteoInfo gets Gregorian time from data according starting time and hours (or other units)...
- June 26th, 2020, 1:20 am
- Forum: MeteoInfo Software
- Topic: Projection error with concentration drawings
- Replies: 1
- Views: 938
Re: Projection error with concentration drawings
Please using the newest version of MeteoInfo (http://www.meteothink.org/downloads/index.html), and please let me know if you have further problem.
- February 19th, 2020, 11:48 pm
- Forum: MeteoInfo Software
- Topic: Convert ERA5 data to ARL data
- Replies: 2
- Views: 1748
Re: Convert ERA5 data to ARL data
Thanks for your information! I have tried adding DIFW as a variable in converted ARF data file and comparing WWND by adding DIFW values. DIFW still has lossy compression problem to reproduce exactly data values of origianl ERA5 data, but the result much improved. Following are new scripts for conver...
- February 19th, 2020, 3:54 am
- Forum: MeteoInfo Software
- Topic: Convert ERA5 data to ARL data
- Replies: 2
- Views: 1748
Convert ERA5 data to ARL data
The example script to convert ERA5 grib data to ARL formatted data for HYSPLIT input meteorological dataset. # Convert ERA5 GRIB data to ARL data #---- Set data folder datadir = r'D:/Temp/grib' #---- Set output data file outfn = os.path.join(datadir, 'test_era5_grib-1.arl') #---- Read a GRIB data fi...
- January 10th, 2020, 1:13 am
- Forum: MeteoInfo Software
- Topic: 3D trajectory and terrain
- Replies: 1
- Views: 2605
3D trajectory and terrain
From MeteoInfo version 2.0, opengl supported 3D axes was implemented for better 3D data visualization. Following is an example to plot 3D trajectory and terrain. fn = 'D:/Temp/hysplit/output_850' f = addfile_hytraj(fn) tlayer = f.trajlayer() ls = tlayer.legend() for lb in ls.getLegendBreaks(): lb.se...
- January 10th, 2020, 1:05 am
- Forum: MeteoInfo Software
- Topic: Read and plot bdyfiles
- Replies: 0
- Views: 3263
Read and plot bdyfiles
The HYSPLIT ./bdyfiles subdirectory contains ascii gridded terrain, land-use and roughness length data for Hysplit. Following is an example MeteoInfoLab script for reading and plotting terrain data file. #Read and plot HYSPLIT bdyfiles import re #Parameters slat = -90 #lat of lower left corner slon ...