Tagged Questions
1
vote
1answer
99 views
ESRI ISurface.GetElevation is extremely slow compared to GlobalMapper
I'm using ISurface.GetElevation on a Raster to get the elevation for a specific lat/lon.
I have to do this for a huge set of datapoints.
Currently i'm testing with a dataset of 10.000 items which ...
3
votes
0answers
134 views
Elevation statistics for a given Area
I am attempting to determine the best way to calculate the Minimum and Maximum elevation for a defined area.
The area is defined by an IPolygon
The elevation is defined as an ISurface
Possible ...
2
votes
1answer
469 views
DTED/GeoTiff layer: Get elevation under mouse pointer
I have a simple desktop app with a map control. The map data that will be available to show will be either DTED files (Military Analyst's catalog / MADTEDLayer), or GeoTiffs (created by gdal). I want ...
3
votes
1answer
430 views
How can I programmatically project the Z value of a z-aware feature point, using ArcObjects in .NET/C#?
I discovered the following code leaves the Z coordinate of featurePt untouched:
// if not WGS84 project it
if (!SpatialRefsEqual(featureSpatialRef, srWgs84))
{
// featurePt here is a Z-Aware ...