I'm relatively new to IDL, so I'm sure what I want to do is actually quite trivial!
I'm creating a class with a few member variables. Two of these will just be floats, but the third I would like to be an 3-dimensional array with unknown size (well.. actually I know the size of the third dimension to be 12, but that's it!). How do I declare this in the class definition or is it not possible? Maybe I need to work with a non-array data structure..?
Here's my code so far:
pro field__define
void={field, lat_res: 0.0, long_res: 0.0, values: ?!?!?!?!}
return
end