POST
|
I couldn't really provide an suggestions on devices. In that line I was referring to software that would allow you to specify the reference data and navigate against it. I'm not really familiar with the navigator product, but on the features page it does mention that "Future releases of ArcGIS Pro will support creating custom navigation maps.". You could probably log a case with support to determine about what this functionality would provide and maybe when it would be available. I spend more of my time in the "build your own application" space. In this space you could build applications for various devices (i.e. desktops with gps units (windows, mac, linux, ubuntu) or mobile applications (iOS, Android, Windows Phone)) that would allow you to better present this task to the user. For example, if I had to accomplish this I'd probably build an overhead display that leverages one of the following examples. Show device location (Consumed on Windows devices using .NET Runtime) https://developers.arcgis.com/net/desktop/guide/show-device-location.htm Displaying the location on a map (Consumed on iOS devices using iOS Runtime) https://developers.arcgis.com/ios/swift/guide/map-gps.htm In both of the above examples I'd probably have someone in the office or in the field drop some digital flags on the map that I could use to create lines or have them just draw the line on the map and then keep an eye on their position as they move around. This will never be as precise as mapping everything out on the ground, but it would keep you in the right area.
... View more
12-17-2015
10:13 AM
|
2
|
1
|
939
|
POST
|
I think what you're needing is navigation software and not gps collection software. Most gps collection software won't be designed to be used while driving. You'll notice the point on the map bouncing around because the GPS Unit will constantly be updating where it thinks you're located based on dozens of factors (DOPs, number of satellites, coverage of satellites, and strength of satellite signal (i.e. do you have a unobstructed view to the sky), etc.). Typically most people would send out a survey crew to take time and accurately survey/mark the area. They would take the collected information and post-process it in the office (unless they have something similar to a RTK setup that is broadcasting corrections during the collection). This data could then be used within a device that supports navigation to help the "driver" stay on track. If you're wanting to do both at the same time, then your dozer operator may have to walk the trail a bit and mark where he needs to drive to ensure that they're staying on track. Otherwise you could have someone else walk the trail and then use the collected data within an application geared more towards navigation than gps collection. The only out-of-the-box app that comes to mind is Navigator for ArcGIS http://doc.arcgis.com/en/navigator/ Outside of this I would think you'd probably want to build your own application using one of the SDKs shown on the following site. ArcGIS for Developers https://developers.arcgis.com/en/
... View more
12-17-2015
09:17 AM
|
1
|
3
|
939
|
POST
|
The steps on the following page are probably the easiest way to install pip other than upgrading python to 2.7.10, which comes with pip by default. http://stackoverflow.com/questions/4750806/how-to-install-pip-on-windows/11311788#11311788 I've included a one minute video that shows how I leveraged the installers on the above page to install pip and then use it to install xlwt.
... View more
12-16-2015
02:16 PM
|
1
|
1
|
384
|
POST
|
Would it be possible for you to upgrade to a version of the software that has the tool you're needing to leverage? Writing your own tool in this case is going to be a rather involved process.
... View more
12-16-2015
10:36 AM
|
0
|
4
|
384
|
POST
|
You'll need to install pip against your 2.6 install to execute the command. You should be able to install Pip with the instructions on the following page. https://pip.pypa.io/en/stable/installing/#install-pip Once you get pip installed you'd be able to use it to install xlwt.
... View more
12-16-2015
09:45 AM
|
0
|
6
|
1011
|
POST
|
This tool would not be available at 10.1. Your options would be to either install the needed python libraries on your 10.1 machine and use them in conjunction with cursors to build the excel table or you could export the table to a csv file and load it into excel from there. xlwt https://pypi.python.org/pypi/xlwt Otherwise you'd need to upgrade to gain access to the TableToExcel tool.
... View more
12-16-2015
08:44 AM
|
0
|
9
|
1011
|
POST
|
the path to your input table is invalid. A dbf table will not have a sub-table. TestTable.dbf should be the name of your table and not TestTable.dbf\TestTable. Also, what version of the software are you using. I don't believe that the TableToExcel tool is available until 10.2.X or higher.
... View more
12-16-2015
08:29 AM
|
0
|
11
|
1011
|
POST
|
You must display the data in the coordinate system it was collected in. If the data is in decimal degrees then most likely it was collected in WGS84. After you properly display the data in its collected system you'll then want to leverage the Project tool to convert it into your needed system. Project (Data Management) http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/project.htm If you use Define against data that was collected in WGS1984 and use Lambert the coordinates will be treated as Meters instead of Decimal Degrees. For example, Redlands, CA is located at -117.1825, 34.0547 in WGS1984, which uses Decimal Degrees. If I were to define this as USA Contiguous Lambert Conformal Conic it would treat these coordinates as -117.1825 Meters and 34.0547 Meters, which would show up in Kansas, instead of the converted coordinates of -1934696.2044 Meters and -319966.3791 Meters.
... View more
12-16-2015
08:24 AM
|
2
|
1
|
2087
|
POST
|
I believe you're running into a known issue. You'll want to unload your project and change the target to ESRI.ArcGIS.AddIns.11.targets in your csproj or vbproj. You'll also want to make sure that the version of the addin is the same as the version you're compiling against.
... View more
12-16-2015
08:08 AM
|
3
|
0
|
284
|
POST
|
The easiest option would be to keep your tool simple. Allow the user to only select a single geodatabase in your first parameter and whatever geodatabase they select in the second parameter will be appended into it. If they want to do multiple geodatabases then they'll need to run the tool multiple times. If you want the tool to work with multiple input and append geodatabases where everything isn't equal then you'll need to present the tool in a manner that allows you to determine what goes where. I would suggest maybe using a value table parameter where you can have the user specify the geodatabase that you should append into. This is most likely going to involve writing up a custom tool validator class to handle the values in the value table. Defining parameters in a Python toolbox http://desktop.arcgis.com/en/desktop/latest/analyze/creating-tools/defining-parameters-in-a-python-toolbox.htm#ESRI_SECTION1_E2BAA5D4440D41D6AAB948922186905A
... View more
12-16-2015
08:02 AM
|
1
|
0
|
565
|
POST
|
You need to specify the extension to the out_table parameter when calling the sample tool to create a dbf output. After that you'd need to call the following tool: Make XY Event Layer http://desktop.arcgis.com/en/desktop/latest/tools/data-management-toolbox/make-xy-event-layer.htm Table to Excel http://desktop.arcgis.com/en/desktop/latest/tools/conversion-toolbox/table-to-excel.htm My only question is why are you needing to create the xy data if you're going to export it to a table, which is essentially going to remove the geometry. Could you not just call the Table to Excel tool directly with the output table of the Sample tool?
... View more
12-15-2015
03:22 PM
|
1
|
13
|
1011
|
POST
|
Nope, but I quickly put one together. Are you having a problem building the model?
... View more
12-14-2015
05:01 PM
|
1
|
1
|
737
|
POST
|
Have you tried adding a message to the dialog to verify the name returned for your model? The values should come in as a string delimited by semi-colons. I would assume that most likely the quotes may be coming in if you have spaces in the strings and you need to strip them out.
... View more
12-14-2015
10:26 AM
|
2
|
0
|
1002
|
POST
|
Are you asking how to create data to build a network dataset against or are you asking how to create feature classes that will allow you to more easily import your analysis data (i.e. stops, destinations, routes, etc.) into an analysis layer?
... View more
12-12-2015
04:17 AM
|
1
|
0
|
539
|
Title | Kudos | Posted |
---|---|---|
1 | 01-19-2016 04:45 AM | |
1 | 09-24-2015 06:45 AM | |
1 | 09-15-2015 10:49 AM | |
1 | 10-12-2015 03:07 PM | |
1 | 11-25-2015 09:10 AM |
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|