| 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 |
|
|---|
| 9 | struct profile22Pixel{ float Band1, Band2, Band3 ,Band4 ,Band5 ,Band6 ,Band7 ,Band8 ,Band9 ,Band10 ,Band11 ,Band12 ,Band13 ,Band14 ,Band15 ,Band16 ,Band17 ,Band18 ,Band19 ,Band20, Band21, Band22 ; } ;
|
|---|
| 10 | struct SMHIpixel{ float lat; float lon; profile22Pixel nh4no3; profile22Pixel sulfate; profile22Pixel nh42so4; profile22Pixel nitrate; profile22Pixel pm10; };
|
|---|
| 11 |
|
|---|
| 12 | typedef marray <SMHIpixel,2> SMHIImage;
|
|---|
| 13 | typedef marray <SMHIpixel,3> SMHICube;
|
|---|
| 14 |
|
|---|
| 15 | typedef set <SMHIImage> SMHIImageSet;
|
|---|
| 16 | typedef set <SMHICube> SMHICubeSet; |
|---|