|
POST
|
Yeah, I've had cases with them that have been open for years before finding a resolution. It's bad enough their mapping platform came from the late 90's. You might have to escalate the case to get any progress.
... View more
01-11-2024
06:04 AM
|
0
|
1
|
2983
|
|
POST
|
If this is a new area you'll have to check the layer display settings in MapSet to include it. To do so, in MapSet, add the layer to your map. Then, click Options > Layer Display Settings. In the Layer Display Settings Window, click the Polygon tab, then click the Select button under Color Classify. You can verify the colors here. I usually click Apply Random Colors. If that doesn't work, you might have to call Central Square support. MapSet is so awful I usually have to anyway.
... View more
01-08-2024
01:53 PM
|
0
|
3
|
3045
|
|
IDEA
|
I'm setting up a gauge to track the wind speed of a storm. I set custom color-coded guides based on wind speed that correspond to whether the storm is a Tropical Storm, Strong Tropical Storm, Category 1, Category 2, Category 3, Category 4, and Category 5. However, there doesn't seem to be a way to label the guides; so the viewer would have to count the rings to determine what the value represents. It would be great if there was an option to create custom guide label text instead of numeric values. Also, the increment level options are either Automatic or to specify a custom increment, but it would be great if your increment values could match your guides. Thanks.
... View more
06-21-2023
07:46 AM
|
0
|
1
|
1054
|
|
POST
|
Thanks, but I haven't found any documentation that says where the toolbox would be located if it's not loading in the default suite of toolboxes. I might just have to call Esri support on this.
... View more
05-31-2023
07:31 AM
|
0
|
0
|
2926
|
|
POST
|
I'm having trouble installing Data Loading Tools. I'm using ArcGIS Pro 3.1.2. I followed the instructions; cloned my Python environment, ensured the cloned environment is set as default, installed the dltsolutions 3.1.2 package, and restarted ArcGIS Pro. I'm unable to find the Data Loading Toolbox or any of the tools, though. I verified the dependent packages are also installed and updated. I also updated all of the other packages. I've tried deleting the cloned environment and repeating the process, but still can't find the tools. Is there something I'm missing?
... View more
05-26-2023
06:11 AM
|
0
|
3
|
2984
|
|
POST
|
I'm not a programmer, but from what I understand this is called a Modulo. It determines whether there is a remainder when dividing one number by another. Even numbers don't have remainders and return 0. Odd numbers return 1. The Boolean function interprets 1 as True, and 0 as False.
... View more
05-12-2023
03:35 PM
|
0
|
0
|
2687
|
|
POST
|
Thanks. That was part of the solution. I calculated the total area using Summary Statistics, then I had to use a Model Builder utility to get the value of the row so that I could use it as an in-line variable in my Arcade script. Also, apparently to use an in-line variable in Arcade you have to wrap it in single-quotes, '%variable%'.
... View more
01-21-2023
08:47 PM
|
1
|
0
|
6223
|
|
POST
|
I tried that, but I don't have Zone features. Instead of identifying the percentage of area in each zone for each land type, I want to identify the parentage of area of each land type of the total combined areas. Thanks.
... View more
01-21-2023
06:23 AM
|
0
|
0
|
6273
|
|
POST
|
I have a polygon feature class representing our county by Land Type, and I'd like to add a field showing the percent of the total area by each type. I did this before by summarizing to get the total area and manually entering that value into an Arcade expression to calculate the percentage for each feature. I'm trying to create a model in Model Builder so that I can automate the process in the future, but I'm not sure how to calculate the total area and feed that variable into the Calculate Field tool to get the percentage of each feature. Does anyone have a suggestion on how to do this?
... View more
01-21-2023
05:42 AM
|
0
|
4
|
6298
|
|
POST
|
I do something similar, but using Arcade. Here's my code: Left Parity var leftfrom = Boolean($feature.fromleft % 2) var leftto = Boolean($feature.toleft % 2) if($feature.fromleft == null || $feature.toleft == null) { return null } else { if($feature.fromleft == 0 && $feature.toleft == 0) { return "Z" } else { if(leftfrom == false && leftto == false) { return "E" } if(leftfrom == true && leftto == true) { return "O" } if(leftfrom == false && leftto == true) { return "B" } if(leftfrom == true && leftto == false) { return "B" } } } Right Parity var rightfrom = Boolean($feature.fromright % 2) var rightto = Boolean($feature.toright % 2) if($feature.fromright == null || $feature.toright == null) { return null } else { if($feature.fromright == 0 && $feature.toright == 0) { return "Z" } else { if(rightfrom == false && rightto == false) { return "E" } if(rightfrom == true && rightto == true) { return "O" } if(rightfrom == false && rightto == true) { return "B" } if(rightfrom == true && rightto == false) { return "B" } } } It automatically applies the expressions as soon as you tab out from the address number fields.
... View more
07-28-2022
11:38 AM
|
2
|
3
|
3054
|
|
POST
|
Thanks, I'm trying this out, but it's been running for two days and still says "Preparing data". Will let you know if it works.
... View more
06-30-2022
07:19 AM
|
0
|
0
|
1027
|
|
POST
|
I created an offline map to use with our Survey123 damage assessment survey based on the steps in this article: An offline map in Survey123 (arcgis.com). I set the basemap to the Navigation basemap, and added our county's parcel layer. However, when I added the offline map to Survey123 and set the basemap to the offline areas I found that it's using the Streets basemap and doesn't show the parcel layer that I added. The offline areas map appears in the list and displays correctly, but it doesn't work offline. I tested the offline map in Field Maps and the offline areas work normally there, using the Navigation basemap and showing the parcels layer. I verified that it works offline there as well. In Survey123 I verified that the Map Types option is set to Standard. I also tried recreating the offline map. If anyone has any suggestions I'd really appreciate it. Ideally, I'd rather not have to side-load the maps on devices due to the number of devices, and because workers might not be centrally located to do so. Thanks.
... View more
06-19-2022
07:15 AM
|
0
|
2
|
1103
|
|
POST
|
I need to create a script to automatically stop an address locator service, and then start it again after another script rebuilds it. We've recently upgraded to ArcGIS Enterprise 10.9.1. Previously, I used the method from this article to do this: Example: Stop or start all services in a folder—ArcGIS Server | Documentation for ArcGIS Enterprise. Apparently, that doesn't work past version 10.8.x. Does anyone know of another way that this process can be scripted? Thanks.
... View more
05-16-2022
01:27 PM
|
0
|
4
|
3517
|
|
POST
|
Thank you. Do you know if that means that the Geo JSON hosted feature service is not displaying live data from the feed, and that it's storing the features in the hosted feature service?
... View more
04-20-2022
11:15 AM
|
0
|
1
|
1519
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-30-2024 06:16 PM | |
| 2 | 08-29-2024 05:33 AM | |
| 1 | 08-28-2024 12:10 PM | |
| 1 | 02-05-2024 01:23 PM | |
| 1 | 01-22-2020 06:09 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-20-2025
12:33 PM
|