|
POST
|
Sounds like you are going to re-digitize the "graphic" and Create a new feature class? If you are giving up on defining your projection correctly then you should covert the DXF to a feature class then Georefernce the data in ArcMap instead. As a reference layer load a feature class that is in the projection that you want and contains lines or points that are shown in your CAD drawing. This could be a layer with Survey control points that are shown on your DXF or an airphoto of the area you are working with (e.g., has a road that is shown on your DXF). See details at for georeferencing: http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Georeferencing_a_CAD_dataset/001000000010000000/ As a side note, at ArcGIS 10.5.1/10.4.1 they changed how what data is allowed in a project file (.prj). In the past you could include comments in your PRJ file. Now if you have comments the prj file will not be read by ArcMap. Check your .prj that came with your DXF and remove any comments. Rich
... View more
12-01-2017
09:35 AM
|
0
|
0
|
1170
|
|
POST
|
To be more precise, the Locate Features Along Routes tool in the Linear Referencing toolbox will do this for you. The output of the tool is an Event Table with point data showing where your polygons intersect your routes.
... View more
11-06-2017
02:41 PM
|
1
|
1
|
1112
|
|
POST
|
Anyone know what the a mxr file is? The first time I saw the file type was in a python error message after iterating through mxd's in a folder. It appears the .mxr files was created by python for each .mxd in the folder. This happened when I exported the mxd's map to jpeg in 10.5.1.
... View more
10-27-2017
10:50 AM
|
0
|
0
|
677
|
|
POST
|
Good news! with ArcGIS Desktop 10.5.1 and Windows 10 Build 1703 .xlsx file now work without issue. On the downside Microsoft just released a new KB, KB4041676 (OS Build 15063.674), patch on October 10th, 2017 that breaks connects to .xls file 😞 More at information on this at http://support.esri.com/en/technical-article/000016969
... View more
10-27-2017
10:26 AM
|
0
|
0
|
3358
|
|
POST
|
One issue with this solution is if you install the 2007 components then run Access 2016, Office will automatically 'upgrade' some components, which breaks this Fix. As a work around, install the 2007 components as Administrator. If your regular users do not have Admin permissions, when they run Access 2016, Office will be unable to 'auto upgrade'. Rich
... View more
09-26-2017
09:13 AM
|
2
|
6
|
7776
|
|
POST
|
This applies to ArcGIS Server 10.5 through 10.8.1 The general rule is 4-5 map services per CPU core or 16-20 services on a standard 4 core CPU. Each service can also have from 0 to ~24 instances. This rule assumes the services are in continues use (a few times a minute or greater); if you have services that are used infrequently the threads can be recyled freeing up resources. For example, if an ArcGIS Server was federated with a Portal, and the server was used to host AGOL type 'map services' produced by logged-in indivudal users then the services would only be used by the owner (unless they shared them). In those cases you could host >100 or more services on a single box -the limit being your physical memory on the server. To reduce the impact of a large number of underused services on memory, in ArcGIS Server Manager set the minimum number of instances to 'MinInstances = 0' vs. the default of 1. For ArcGIS Server 10.5 minimum physical memory is 8 GB per license installed. If Portal and ArcGIS Server were installed on the same machine then you would want 16 GB physical memory. General rule of thumb is your vitual memory should be 2x your physcial memory (i.e., 32 GB on a local disk). You cache or d:\data drive should be on a fast storage device and should start at 500 Gb with the ability to grow to 2 TB if you were using the server as given in this example. Each service takes a minimum of 2 MB of memory. CPU is 4 core, >=3.5 GHz, and should support graphics; but that is the hard one with all the changes in the last few years... 😞
... View more
08-14-2017
02:44 PM
|
1
|
0
|
3368
|
|
POST
|
Kuba, ArcGIS License Manager 10.5.1 fully supports concurrent use licensing for ArcGIS Pro. If you already have your Pro licenses loaded into the license manager they will carry over to the 10.5.1 LM when you upgrade in-place. One key NEW feature with the ArcGIS Pro 2.0 install package is the addition of several new install properties for the package. ArcGIS Pro 1.4.1 you only had one property (ALLUSES), with 2.0 you have the following: msiexec /i ArcGISPro.msi ALLUSERS=1 ESRI_LICENSE_HOST=<license server> SOFTWARE_CLASS=BASIC AUTHORIZATION_TYPE=CONCURRENT_USE So for the first time Enterprise deployments are practical. Rich
... View more
07-06-2017
09:21 AM
|
1
|
1
|
1662
|
|
POST
|
If ArcGIS full supported T-SQL we could just do WHERE DATENAME(weekday, DueDate) <> 'Sunday' or DATENAME(weekday,GETDATE()) = 'Thursday' https://technet.microsoft.com/en-us/library/ms174395(v=sql.105).aspx If your data is in a database, I would suggest calculating the Day there and save the result into a new field, then use a method similar to the one described above for mapping.
... View more
04-20-2017
02:37 PM
|
1
|
0
|
1966
|
|
POST
|
In python the seperator between your properties is the | symbol, not a space. Your properties would be "routeID|Line|inBMP|inEMP". If you called the same model from C# you would use spaces.
... View more
03-07-2017
03:19 PM
|
0
|
0
|
811
|
|
POST
|
I have a tool that gets map coordinates from a mouse click and then does some work. In code add a marker symbol at the location the person clicked. The user may click multiple times prior to exiting the tool. On exiting I would like the overlay to be cleared. To add the points I'm doing this: var disposable = await QueuedTask.Run(() => { return mapView.AddOverlay(myPoint, SymbolFactory.ConstructPointSymbol(ColorFactory.CreateRGBColor(255,255,0), 10.0, SimpleMarkerStyle.Cross).MakeSymbolReference()); }); Do I need to keep track of all the disposable vars (perhapse in an array) to do: disposable.Dispose(); for each maker? What I would like is a mapView.ClearOverlayAsync() command similar to the existing mapView.ClearSketchAsync();. Ideas? Rich
... View more
02-10-2017
04:04 PM
|
0
|
1
|
2795
|
|
POST
|
Note - the Microsoft Office Access database engine 2007 (English) v12.0.4518 is the package you want and it is now located at https://www.microsoft.com/en-us/download/details.aspx?id=23734. Rich
... View more
01-26-2017
03:54 PM
|
1
|
0
|
1622
|
|
POST
|
The main problem with most of the new ArcGIS "Explorer" type solutions is demonstrated by the following quote from the Explorer for ArcGIS Application. "To use your maps in Explorer, you must have an ArcGIS organizational account. ArcGIS Online and Portal for ArcGIS 10.3.1 and later are supported." This means their solutions require a internet connection and AGOL accounts to work. Thus they do not provide a cost free environment for development.
... View more
01-25-2017
11:15 AM
|
1
|
1
|
1306
|
|
POST
|
The current Build is 3500, the current MSI package was built 9/21/2015 and released on October 2015. Build 3400 enters mature support on October 2016 with retirement October 2017. full support mature support Oct 2015 – Sept 2016 Oct 2016 – Sept 2017
... View more
01-25-2017
11:13 AM
|
0
|
0
|
1306
|
|
POST
|
In the DAML for a Add-In you can define the png image to use for a tool. <tool id="BasicMapTool_BasicMapTool" caption="Show Coordinates" keytip="T1" className="BasicMapTool" loadOnClick="true" smallImage="Images\crosshair16.png" largeImage="Images\crosshair32.png" condition="esri_mapping_mapPane"> Generally if you stay with one of the ESRI default icons they will appear. However, based on the pathing any 16 and 32 pixel png image referenced at .\Images should be usable. Where is this location? I've tried deploying them to the assembly cache (e.g., C:\Users\<user id here>\AppData\Local\ESRI\ArcGISPro\AssemblyCache\{ff226987-8efd-4d34-b606-3e731c8cd2ad}\Images) but that does not appear to work. In Visual Studio 2013 it the setup looks like this (see attached screen shot_. Rich D.
... View more
12-29-2016
05:56 PM
|
0
|
2
|
2819
|
|
POST
|
Does this work, or should we be using HandleMouseDownAsync instated of HandleKeyDownAsync? protected override async Task HandleMouseDownAsync(MapViewMouseButtonEventArgs e) { //Convert the clicked point in client coordinates to the corresponding map coordinates. mapPoint = await QueuedTask.Run(() => MapView.Active.ClientToMap(e.ClientPoint)); } What is needed is a code example of the basic process of 'selecting tool from list (e.g., a combobox)', then click on map to get coordinates, then do something with them (e.g., display coord in pop-up). This is not provided as a code snip it in the SDK help documents. BASED on the new sample published on GeoNet (7/2016) they are using: protected override void OnToolMouseDown(MapViewMouseButtonEventArgs e) { .. } and protected override Task HandleMouseDownAsync(MapViewMouseButtonEventArgs e) { ... } which appears to work.
... View more
12-27-2016
11:26 AM
|
0
|
1
|
3671
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 4 weeks ago | |
| 2 | 4 weeks ago | |
| 1 | 10-01-2025 09:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|