Hello!

I have a store that extends AbstractGridFormat and a reader that is a 
StructuredGridReader, I need a custom dimension for the read parameters other 
than time and elevation.

I've created a ParameterDescriptor in my store:
ParameterDescriptor<List> CUSTOM_DIM = 
DefaultParameterDescriptor.create("custom_dim","",List.class,null,false);

And I pass it as a read parameter:

New ParameterGroup(new DefaultParameterDescriptorGroup(infomap,new 
GeneralParameterDescriptor[] {READ_GRIDGEOMETRY2D,TIME,ELEVATION,CUSTOM_DIM}));


On the reader side I've setup the methods to account for the custom dimension:

getMetadataNames()

getMetadataValue(String coverage,String domain)


What else do I need to do for my custom dimension to register in geoserver? Is 
there any documentation on this besides setting up a custom dimension through 
the UI or REST API?

Any help is greatly appreciated!

Best,

Sylvia

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to