Example #1
0
 /**
  * Set default response 3D EPSG code from settings
  *
  * @param epsgCode3D 3D EPSG code from settings
  * @throws ConfigurationException If an error occurs
  */
 @Setting(FeatureQuerySettingsProvider.DEFAULT_RESPONSE_3D_EPSG)
 public void setDefaultResponse3DEpsg(final int epsgCode3D) throws ConfigurationException {
   Validation.greaterZero("Storage 3D EPSG Code", epsgCode3D);
   defaultResponse3DEPSG = epsgCode3D;
   addToSupportedCrs(epsgCode3D);
 }
Example #2
0
 /**
  * Set storage 3D EPSG code from settings
  *
  * @param epsgCode3D 3D EPSG code from settings
  * @throws ConfigurationException If an error occurs
  */
 @Setting(FeatureQuerySettingsProvider.STORAGE_3D_EPSG)
 public void setStorage3DEpsg(final int epsgCode3D) throws ConfigurationException {
   Validation.greaterZero("Storage 3D EPSG Code", epsgCode3D);
   storage3DEPSG = epsgCode3D;
   addToSupportedCrs(epsgCode3D);
 }