|
POST
|
Beware that with new versions of Edge and Chrome the file:// option is no no longer implemented. Solution is to place the pdfs on a web server and use http:// or https:// file paths to the PDF.
... View more
07-28-2021
11:23 AM
|
0
|
0
|
1575
|
|
IDEA
|
good idea since most users do not know the correct information to add for the Transformation steps.
... View more
07-12-2021
04:02 PM
|
0
|
0
|
2247
|
|
POST
|
In regards to deployments, similar to ArcGIS Desktop the ArcGIS Pro install package accepts command line arguments than can be used to set the license manager name and default license level. This option partly solves the installation question mentioned in the last paragraph (above). Msiexec /i ArcGISPro.msi ALLUSERS=1 ESRI_LICENSE_HOST=MY_ESRILIC_Server SOFTWARE_CLASS=Viewer LOCK_AUTH_SETTING=False AUTHORIZATION_TYPE=CONCURRENT_USE CHECKFORUPDATESATSTARTUP=0 PORTAL_LIST="https://MyOrg.maps.arcgis.com" /qb
... View more
07-02-2021
08:42 AM
|
2
|
0
|
12155
|
|
POST
|
We have built a C# application we have named ArcGIS Pro License Manager that allows the user to select their license level and extensions, these are saved just prior to ArcGIS Pro being launched. This allows 'non' administrators on their local machine to change their license levels and extensions on the fly. *This is something that ESRI should add to their application.
... View more
07-02-2021
08:35 AM
|
1
|
0
|
10358
|
|
POST
|
Since you are talking ArcMap there are two things you should try: 1. Delete your Normal.mxt file at C:\Users\<your user id>\AppData\Roaming\ESRI\Desktop10.7\ArcMap\Templates replace 10.7 with your version. Since you downgraded delete the 10.8 folder you may find at the above location as well. 2. Have a different user login to your computer with a different user id and see if they have the same issue with your map. If their account works and yours does not, that means your Windows 10 Profile is corrupt on the machine.
... View more
05-28-2021
09:33 AM
|
0
|
1
|
3023
|
|
POST
|
or the lack of documentation for the <Addininfo> xml tag.
... View more
05-27-2021
03:38 PM
|
0
|
0
|
1522
|
|
POST
|
The above is a good idea, if the fonts look good in ArcMap (or Pro) and then are missing or are replaced by #!%# in the PDF then Adobe may not be able to use you selected font. *this behavior can seen when using an ESRI font (or symbol style) that is ONLY available on machines with ArcGIS Desktop installed. In this case the PDF would look fine on your machine but if someone without ArcGIS Desktop opened it on 'their' machine they would see the !#$#!@ issue.
... View more
05-27-2021
12:32 PM
|
0
|
0
|
6935
|
|
POST
|
Hello, Liberally sprinkled through the code snippets provided in the ArcGIS Pro SDK there are several references to using: .FirstOrDefault Any idea on how to get it to work? I'm attempting the following: MapProjectItem mpi = Project.Current.GetItems<MapProjectItem>().FirstOrDefault(m => m.Name.Equals(strMapName, StringComparison.CurrentCultureIgnoreCase)); I'm using the above to retrieve the first occurrence of a map element in a project with the given name in an array that meets the search criteria. However, the above method is not part of the GetItems class. As a result Visual Studio returns "IEnumeratable<MapProjectItem> does not contain a definition for .FirstOrDefault and no accessible extension accepting a first argument could be found."
... View more
05-27-2021
10:12 AM
|
0
|
2
|
2924
|
|
POST
|
What is the best way to do something like this? I need to wait until a layout templated is loaded before updating some of its elements. *this example will not run since we can't return a Task<> with this call. //add the layout to the project and wait for import to complete Task t = await QueuedTask.Run<Task>(() => Project.Current.ImportItem(theItem, true)); t.Wait;
... View more
05-26-2021
02:14 PM
|
0
|
0
|
9315
|
|
POST
|
On the ArcMap side (client) there is not an exposed setting for this. No settings are listed in Advanced Settings document found in c:\program files (x86)\ArcGIS\Desktop10.8\Utilities regarding layer timeouts.
... View more
05-06-2021
03:40 PM
|
0
|
0
|
1038
|
|
POST
|
I would try reloading your True Type Fonts. Assuming you are on Windows 10, Open the Windows 10 Settings menu, click on Personalization, and then click on the Fonts tab. You should see in-line examples of the font faces you currently have installed. Other option is navigate to C:\Windows\Fonts. On my machine I have 266 font styles loaded. If you navigate in File Explorer, on the left side there will be a Font Settings link, follow this to the Restore default font settings button. See example photo attached. This may be worth a try...
... View more
05-06-2021
03:08 PM
|
0
|
4
|
7006
|
|
POST
|
Have you tried the ArcToolbox Table to Table tool? It would take any table (shapefile, feature class, etc.) and export to csv, txt, or dbf file formats. If your table does not have x,y coords use the Add XY Coordinates tool to add POINT_X and POINT_Y fields with those values to the table prior to exporting.
... View more
05-06-2021
02:57 PM
|
0
|
0
|
2860
|
|
POST
|
Steps are: 0. Open ArcMap, do not load an existing MXD. 1. add a table to ArcMap, this can be an Excel worksheet or .csv file. If using .csv ensure you have a header row. 2. look at your table in ArcMap, what are the x and y fields called? Look at the coordinates, are they longitude and latitude decimal degrees or something else like UTM? 3. Use Map an XY option on the table, use the field names identified in step 2 as input. 4. You will see your points on the map and a New Layer will be added to the map you now have two options, define the projection for the Layer and Save to a .lyr file OR 5. right click on the layer and Export Data to Shapefile. 6. Use the Define Projection in ArcToolbox to set the projection. Now when you load the shapefile or layer file into your 'other map' it will be reprojected on the fly to match your Map document.
... View more
05-06-2021
02:46 PM
|
0
|
0
|
5067
|
|
POST
|
It would not hurt to return all your licenses then provision and load the new ones. Otherwise your old expired licenses may remain in your concurrent license pool for all to see (for ever 🙂
... View more
05-06-2021
02:34 PM
|
0
|
0
|
1355
|
|
IDEA
|
One problem with the use of favorites as a way to pass styles between projects is that they are per user. Also the user has to have access to the style and know where to find them on the network or software install folder path. Most large organizations have a a custom style they use on their maps OR use one of the ArcMap style sets that fits with their business. Currently these are 'just there' in ArcMap if you place the style file in the correct place.
... View more
05-06-2021
02:29 PM
|
0
|
0
|
4662
|
| Title | Kudos | Posted |
|---|---|---|
| 8 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 06-17-2026 08:21 AM | |
| 1 | 06-15-2026 08:41 AM | |
| 1 | 06-10-2026 08:40 AM |
| Online Status |
Offline
|
| Date Last Visited |
Monday
|