Ticket #321: meaTypes.dl

File meaTypes.dl, 727 bytes (added by barboni@…, 11 years ago)
Line 
1/*
2::::::::::::::::::::::::::::
3 SMHI rasdaman data
4 - 2 subdataset with 1 band (lat, lon)
5 - 5 subdataset with 22 float band (nh4no3, sulfate, nh42so4, nitrate, pm10)
6::::::::::::::::::::::::::::
7*/
8
9struct profile22Pixel{ float Band1, Band2, Band3 ,Band4 ,Band5 ,Band6 ,Band7 ,Band8 ,Band9 ,Band10 ,Band11 ,Band12 ,Band13 ,Band14 ,Band15 ,Band16 ,Band17 ,Band18 ,Band19 ,Band20, Band21, Band22 ; } ;
10struct SMHIpixel{ float lat; float lon; profile22Pixel nh4no3; profile22Pixel sulfate; profile22Pixel nh42so4; profile22Pixel nitrate; profile22Pixel pm10; };
11
12typedef marray <SMHIpixel,2> SMHIImage;
13typedef marray <SMHIpixel,3> SMHICube;
14
15typedef set <SMHIImage> SMHIImageSet;
16typedef set <SMHICube> SMHICubeSet;