how do I find a the xyz position on a surface created with multiple points. Say I survey the perimeter of a parking lot sloped in 2 directions not necessarily on a flat plan to create a surface. If i walk to any area with in the perimeter of the points with a gps device telling me the latitude and longitude? how would I calculate the elevation to the surface at that point? using c#
xyz (latitude longitude elevation) position on a surface
118 Views Asked by john At
1
There are 1 best solutions below
Related Questions in GPS
- identify GPS mobile phonegap
- Android runtime permissions on android versions below M?
- iOS Distance between two GPS Location
- GPS not showing current location on map
- java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.TextView.setTextColor(int)' on a null object reference
- using Gps Getting Latitude and Longitude
- Position marker in Google Map is not disapearing when position is lost
- How to set/get GPS Accuracy on Android Emulator?
- GPSTracker Class not working
- How to Switch ON and OFF GPS
- GPS App compile errors
- OpenGTS platform
- FusedLocationProviderApi Fatal exception: GoogleApiClient is not connected yet.
- SQL LINESTRING() versus multiple rows
- Trouble connecting to gpsd
Related Questions in TRIANGULATION
- Delaunay triangles point connectivity?
- Integrating Velocity Over a Complex 2-D Surface
- What is the best initial shape for 3D Delaunay incremental algorithm?
- Correct use of polygon triangulators in LibGDX
- Drawing filled polygon with libGDX's earclippingtriangulator and PolygonSpriteBatch
- Matching results of Delaunay triangulation in OpenCV
- Increasing mesh details (additional tesselation)
- How do I access the original point in periodic 2 D Triangulation in CGAL?
- How to generate a triangulation for FEM 1D - MATLAB?
- Triangulating a planar 2D concave polygon in 3d space - Help checking concavity?
- Delaunay triangulation
- How do you pin point the location of a user with 3 nodes, using Triangulation?
- Triangulates all objects in Autocad
- Creat mesh from point cloud on a 2D grid
- How to convert binary tree to polygon triangulation and vice versa
Related Questions in ELEVATION
- Get elevation (altitude at ground level) using USGS Elevation Query Service API
- Convert Azimuth/Elevation of a celestial body to Longitude/Latitude on geographic map
- Does Google Maps Api Elevation Service provide the Height of a position (or altitude)?
- How to make a batch file tell if it is elevated or not
- Seeking Solutions for Implementing Elevation (height) and Line-of-Sight in a 2D Topdown Space in Unity3D
- DEM data (Grid Text) to Raster Image using C++
- Google Elevation API - limits
- Increasing quota on google elevation api
- Elevate MSI install while allowing user based actions
- Google elevation api
- How to set up an arbitrary viewpoint in matplotlib's 3D axes?
- Salt and Pepper noise of Contours function with GeoServer
- Custom coastline shapefile from high resolution elevation data
- mapbox.mapbox-terrain-dem-v1 replaces mapbox.terrain-rgb
- sometime shadow(elevation) doesn't work in react native
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
To transform [latitude, longitude, radius] to [x,y,z] (being (0,0,0) the center of the Earth) you can use the formulas from this answer
Now you can have all vertices of the perimeter of a surface expressed in [x,y,z] coords.
To get the
zof a given(px,py)inner point you may suppose that the surface is formed by straights going from any vertex to any other vertex. If the surface is plain enough, the error is low; otherwise you need points inside the surface.Given such a "smooth" surface, you can define a straight passing through the point (px,py), with any heading. And intersect that line with the polygon, get the two intersections,
I1(x1,y1)andI2(x2,y2).For each intersection you get the edge of the polygon, and interpolate with its two vertices the elevation (z) of the intersection.
Now interpolate the required 'z' with the two coords and elevations you have freshly calculated.
For more accuracy, you can use several straights, all passing through the point but with different headings, and get the average of the interpolated elevations.