public class PushbroomUtilities extends java.lang.Object implements com.esri.arcgis.interop.RemoteObjRef, IPushbroomUtilities
Description 'Pushbroom Xforms Utilities class.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =
IID, IIDbfefedb3_12cb_42c9_b59b_1092998414bb, xxDummy| Constructor and Description |
|---|
PushbroomUtilities()
Constructs a PushbroomUtilities using ArcGIS Engine.
|
PushbroomUtilities(java.lang.Object obj)
Deprecated.
As of ArcGIS 9.2, replaced by normal Java casts.
PushbroomUtilities thePushbroomUtilities = (PushbroomUtilities) obj; |
| Modifier and Type | Method and Description |
|---|---|
void |
convertECEFtoLonLat(double x,
double y,
double z,
double[] lon,
double[] lat,
double[] elev)
Convert ECEF coordinates to longitude, latitude, elevation
|
void |
convertLonLatToECEF(double lon,
double lat,
double elev,
double[] x,
double[] y,
double[] z)
Convert longitude, latitude, elevation to ECEF coordinates
|
boolean |
equals(java.lang.Object o)
Compare this object with another
|
void |
evalDIMAPTimeString(byte[] time_str,
int[] jDayPtr,
double[] fraction)
Express DIMAP time string as fraction of a day
|
static java.lang.String |
getClsid()
getClsid.
|
com.esri.arcgis.interop.Dispatch |
getJintegraDispatch()
Gets a reference to a com.esri.arcgis.interop.Dispatch which can be used to access the COM object that support for this
interface indicates the implementing class references.
|
int |
hashCode()
the hashcode for this object
|
void |
release()
Release this COM object reference
|
double |
vectorCross(double[] v1,
double[] v2)
Calculate cross product of two vectors.
|
void |
vectorDirection(double[] v,
double[] lon,
double[] lat)
Express a 3D vector in polar coords (lon, lat).
|
void |
vectorIntersectEllipsoid(double[] vP,
double[] vU3,
double htAboveEllipsoid,
double[] lon,
double[] lat)
Intersect a vector with an ellipsoidal surface plus height
|
double |
vectorNormalize(double[] v1)
Normalize a vector so its length is 1.0.
|
double |
vectorRotate3Axes(double[] vIn,
double xRot,
double yRot,
double zRot)
Rotate a vector about 3 axes (inputs radians)
|
public PushbroomUtilities()
throws java.io.IOException,
java.net.UnknownHostException
java.io.IOException - if there are interop problemsjava.net.UnknownHostException - if there are interop problemspublic PushbroomUtilities(java.lang.Object obj)
throws java.io.IOException
PushbroomUtilities thePushbroomUtilities = (PushbroomUtilities) obj;obj to PushbroomUtilities.obj - an object returned from ArcGIS Engine or Serverjava.io.IOException - if there are interop problemspublic static java.lang.String getClsid()
public boolean equals(java.lang.Object o)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic com.esri.arcgis.interop.Dispatch getJintegraDispatch()
getJintegraDispatch in interface com.esri.arcgis.interop.RemoteObjRefpublic void release()
release in interface com.esri.arcgis.interop.RemoteObjRefpublic double vectorNormalize(double[] v1)
throws java.io.IOException,
AutomationException
vectorNormalize in interface IPushbroomUtilitiesv1 - The v1 (in)java.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public double vectorCross(double[] v1,
double[] v2)
throws java.io.IOException,
AutomationException
vectorCross in interface IPushbroomUtilitiesv1 - The v1 (in)v2 - The v2 (in)java.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public void vectorDirection(double[] v,
double[] lon,
double[] lat)
throws java.io.IOException,
AutomationException
vectorDirection in interface IPushbroomUtilitiesv - The v (in)lon - The lon (in)lat - The lat (in)java.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public void vectorIntersectEllipsoid(double[] vP,
double[] vU3,
double htAboveEllipsoid,
double[] lon,
double[] lat)
throws java.io.IOException,
AutomationException
vectorIntersectEllipsoid in interface IPushbroomUtilitiesvP - The vP (in)vU3 - The vU3 (in)htAboveEllipsoid - The htAboveEllipsoid (in)lon - The lon (out: use single element array)lat - The lat (out: use single element array)java.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public double vectorRotate3Axes(double[] vIn,
double xRot,
double yRot,
double zRot)
throws java.io.IOException,
AutomationException
vectorRotate3Axes in interface IPushbroomUtilitiesvIn - The vIn (in)xRot - The xRot (in)yRot - The yRot (in)zRot - The zRot (in)java.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public void convertLonLatToECEF(double lon,
double lat,
double elev,
double[] x,
double[] y,
double[] z)
throws java.io.IOException,
AutomationException
convertLonLatToECEF in interface IPushbroomUtilitieslon - The lon (in)lat - The lat (in)elev - The elev (in)x - The x (out: use single element array)y - The y (out: use single element array)z - The z (out: use single element array)java.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public void convertECEFtoLonLat(double x,
double y,
double z,
double[] lon,
double[] lat,
double[] elev)
throws java.io.IOException,
AutomationException
convertECEFtoLonLat in interface IPushbroomUtilitiesx - The x (in)y - The y (in)z - The z (in)lon - The lon (out: use single element array)lat - The lat (out: use single element array)elev - The elev (out: use single element array)java.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.public void evalDIMAPTimeString(byte[] time_str,
int[] jDayPtr,
double[] fraction)
throws java.io.IOException,
AutomationException
evalDIMAPTimeString in interface IPushbroomUtilitiestime_str - An signed byte (in)jDayPtr - The jDayPtr (out: use single element array)fraction - The fraction (out: use single element array)java.io.IOException - If there are interop problems.AutomationException - If the ArcObject component throws an exception.