I'm using arcgis to find the nearest distance from my lat/lon points to coastline. I use the near tool in arcgis. however, i realize that the "Geodesic option" is missing from the arcgis i'm using. i suspect this is a version problem, does anyone know?
many thanks!
The Method parameter (allowing you to choose between PLANAR and GEODESIC) was added in ArcGIS 10.2.1, so you're probably using an older version indeed.
See What's new in ArcGIS 10.2.1 for reference.
Related
Hello fellow arcgis developers.
I am about to migrate from old Arcgis.Client .Net to Arcgis.Runtime .Net.
And looking at the documentation I cant find what corresponding namespaces they are now using in the Arcgis.Runtime 100.x.
Now when running Arcgis.Client i have these all namespace i need to change for the corresponding in Arcgis.Runtime 100.13 and as i mentioned could not find in the documentation:
using ESRI.ArcGIS.Client.Local;
using ESRI.ArcGIS.Client;
using ESRI.ArcGIS.Client.Symbols;
using ESRI.ArcGIS.Client.Tasks;
using ESRI.ArcGIS.Client.Toolkit.DataSources;
using ESRI.ArcGIS.Client.Geometry;
I have been looking at this guide but I dont mention the namepaces above.
https://developers.arcgis.com/net/reference/migrate-to-100-x-from-10-2-x/
It’s not a 1:1 but most namespaces are under Esri.ArcGISRuntime.* instead of Esri.ArcGIS.Client.*. Let intellisense and auto complete in Visual Studio help you discover them. Also not all classes are 1:1 so they might be named different or use a completely different and improved approach now
does Arcgis .net runtime include any classes to load data from WFS and display it as a layer? I have been reading documentation and cannot find any WFS support. FeatureLayer seems to work only with arcgis servers.
My current solution: Request Geoserver -> parse gml -> display it as GraphisLayer filled with SimpleMarkerSymbol. I dont think its optimal, is there any better way of doing this?
Thanks for info.
WFS is not supported by the Runtime at this point. It is however on the roadmap, but I don't have any specific timeframe for it at this point.
Your current solution should work for now, but you might want to consider using FeatureCollection instead of GraphicsLayer, since it is better at rendering large amount of features with less memory load.
WFS (read-only) will be supported in the upcoming 100.5 release of ArcGIS Runtime.
I have been unable to find out how i can set the Kinect depth mode to near (40-300mm) using OpenNi. I am programming in C++ and would like to keep using the OpenNi libraries for retreiving the depth data, however i cannot find any property of setting that i should use for changing modes.
I too wanted to do the same thing. I googled up a bit and found following
libfreenect which is a fork from OpenKinect
This fork with the branch "nearMode" provides capability to work in NEAR_MODE. This is a compile time solution only. I plan to compile and use it.
I'm exploring on how to connect to GPS on Windows Mobile using VB.net. (Compact framework)
Most of the result that I found is using GPS Intermediate Driver . but this seems not solve my problem(or perhaps I just don't understand it?)
Besides, I found that there is something like gpsapi.dll in which I think I can add as a reference. But where can I get this?
I've read article:using the managed GPS sample too, but it seems only for C?
Please guide me / correct me if I'm wrong
It looks like it is for C#. And the download for the Windows Mobile 6.5.3 Developer Tool Kit
is here: http://www.microsoft.com/en-au/download/details.aspx?id=5389
Read the steps in the article link carefully:
Find the samples folder, compile the sample, grab the generated dll, import into your solution as a reference, put in the imports directive and you should be there.
Its a long shot, has anyone used Esri ArcObjects recently?
According to the docs:
A new requirement is runtime binding. Runtime binding refers to locating the appropriate ArcGIS product installation of a stand-alone ArcGIS Desktop or Engine application before any ArcObjects code (including license initialization) is called. The application programming interfaces (APIs) to establish runtime binding are in the ESRI.ArcGIS.RuntimeManager class in the ESRI.ArcGIS.Version assembly
But I cannot find ESRI.ArcGIS.Version.dll anywhere. I have the trial version of ArcMap 10.1. Does anyone know how I can get hold of this DLL?
ArcObjects is the ArcGIS API, not part of ArcMap. You use it to build GIS applications using ArcMap's engine, but you need more than just ArcMap to do it. Unfortunately it costs money to get hold of ArcObjects - the bit you're looking for is ArcGIS Engine:
http://www.esri.com/software/arcgis/edn/what-you-get
Of course, it depends what you're trying to do - if you want to do some custom coding inside ArcMap, you may be able to do it with ArcPy:
http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//000v00000001000000
Are you using Visual Studio? If so you need to add a reference to ESRI.ArcGIS.Version in the project references window. It will be under the ".Net" tab when you click "Add Reference.".