|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IQueryResultOptions
Provides access to methods that control query results.
IQueryResultOptions has a property used to select the output Format of a query result. The query result can be formatted into a RecordSet or KMZ format (either as a URL to the kmz file or a Mime object). Another property includes GeoTransformation . This property is used to specify any needed geographic transformation on the results.
FormatProperties is currently not in use.
Method Summary | |
---|---|
int |
getFormat()
The query result format. |
IPropertySet |
getFormatProperties()
Format properties specific to result format. |
IGeoTransformation |
getGeoTransformation()
Geo transformation required to transform the geometry if the requested GCS is different from the source. |
void |
setFormat(int format)
The query result format. |
void |
setFormatPropertiesByRef(IPropertySet ppOptions)
Format properties specific to result format. |
void |
setGeoTransformationByRef(IGeoTransformation geotransform)
Geo transformation required to transform the geometry if the requested GCS is different from the source. |
Method Detail |
---|
int getFormat() throws IOException, AutomationException
The query result can be formatted into a RecordSet or KMZ format (either as a URL to the kmz file or a Mime object).
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setFormat(int format) throws IOException, AutomationException
format
- A com.esri.arcgis.carto.esriQueryResultFormat constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IPropertySet getFormatProperties() throws IOException, AutomationException
FormatProperties is currently not in use.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setFormatPropertiesByRef(IPropertySet ppOptions) throws IOException, AutomationException
ppOptions
- A reference to a com.esri.arcgis.system.IPropertySet (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IGeoTransformation getGeoTransformation() throws IOException, AutomationException
In some instances the QueryResult may require a GeoTransformation . For example, a given map service may be using a spatial reference system based on GCS_WGS_1984, found in the DefaultMapDescription. A client wants to display QueryFeatureData2 results based on this map service in a different spatial reference, GCS_European_1950. The results will use the spatial reference of the DefaultMapDescription, GCS_WGS_1984, and display these results, incorrectly in GCS_European_1950. Features may not "line up" correctly. In order to correctly display these results a GeoTransformation is needed. Applying the correct GeoTransformation ensures the spatial correctness of the result.
Another instance where a GeoTransformation may be need to be specified in the QueryResultsOption is if the queried layer is projected on the fly within the map service, that is coordinate system of the layer's source is different than the DefaultMapDescription coordinate system, and no appropriate transformation has been set in the map document before serving. In this case, you can access the the coordinate system of a layer source by first getting the layer's MapLayerInfo, then get Fields from MapLayerInfo, then get a single Field from Fields, then get GeometryDef from Field, and finally, get the SpatialReference from GeometryDef.
A GeoTransformation is not needed if different projected coordinate systems share the same underlying geographic coordinate system. For best results it is optimal for data (layers within the map service), map service and MapServer output to be in the same coordinate system.
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setGeoTransformationByRef(IGeoTransformation geotransform) throws IOException, AutomationException
geotransform
- A reference to a com.esri.arcgis.geometry.IGeoTransformation (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |