|
POST
|
The Solution Deployment Tool will not upgrade or modify any already deployed items, this is because once deployed the items can be modified and would be very difficult for us to push the enhancements in place. However, when you deploy an update we will only create new versions of the enhanced items. For example if we enhanced a web application in the solution we will only deploy the new web application, on top of the existing web map and feature layers in your organization. So you won't need to re-load your data. If we need to modify the layers to change the schema we will deploy the new layers and maps and apps on top of the layers.
... View more
06-02-2020
05:33 AM
|
1
|
0
|
1739
|
|
POST
|
Hi Joe, Prior to 10.0, you would have to maintain these fields separately or run the standardize addresses tool to pull the information from the full street name into separate fields. This step is no longer required because the standardization process occurs when the address locator is built regardless of whether the address components are stored in a single field or split across multiple fields. So for example I put a locator on my site address points, using just the house number, the full street name (as the street name), and the municipality. I then did a search for an address with some incorrect info, i.e I search for '1313 Mill Rd' and it returned below. Notice how the components of the full road name 'N Mill St' were automatically pulled out into the separate fields, and it wasn't a perfect match but found a valid candidate.
... View more
05-27-2020
01:45 PM
|
0
|
3
|
3314
|
|
POST
|
Hi Charlie, Yes the Pro project that is included in the solution has a task that walks your through how to calculate the trend lines. You can do this for any time series data you have it is not limited to the metrics that are pre-configured in the solution. There is a task that describes how you can add additional fields to the layers provided and calculate your own trend lines. We also document how to configure the dashboard for the custom metrics and trends you add to the layers. Tabulate recovery metrics - Coronavirus Recovery Dashboard | ArcGIS Solutions Configure recovery dashboard - Coronavirus Recovery Dashboard | ArcGIS Solutions
... View more
05-15-2020
04:00 PM
|
1
|
0
|
4403
|
|
POST
|
Joe Borgione lines 147-153 is where it is sending the request to add the new site address points. Did you happen to change the name of the Site Address Point feature class. What are you setting for the offset and # of points for the Address Point?
... View more
05-06-2020
09:31 AM
|
1
|
1
|
1536
|
|
POST
|
Joe Borgione, if you are using the editing feature templates to construct the points, the feature templates are what is setting the default values. You can update the existing feature templates with your defaults or create new templates with your desired default values. Feature templates—ArcGIS Pro | Documentation
... View more
05-06-2020
09:24 AM
|
2
|
1
|
4589
|
|
POST
|
Unfortunately this looks to be an oversight on our part in this Solution. I have logged an issue in our backlog to re-evaluate this aspect of the solution. This functionality isn't a requirement to make everything else work, so as a workaround for now you could just remove the domain on the roads and site addresses. You will just have to type in the road name when you create a new road, creating new site addresses should still pull the road name from the intersecting road.
... View more
04-27-2020
08:19 AM
|
2
|
0
|
3575
|
|
POST
|
Tyler Ulmer, the expression looks good, same as what is shipped with the solution. Can you confirm that the left from, left to, right from and right to are populated on the road that you are creating the address point along?
... View more
04-23-2020
06:21 AM
|
1
|
0
|
1833
|
|
POST
|
Joe Borgione, yes that is the intention. Although there is a bug right now with the update road index tool that fails if the same road name is repeated multiple times. I am going to address this in a future release, but for now would recommend you just keep in the list 1x. Having it listed multiple times doesn't actually add any functionality to the solution.
... View more
04-20-2020
07:57 AM
|
1
|
1
|
1091
|
|
POST
|
I would recommend you use a field calculation in ArcGIS Pro to calculate a unique id: Calculate Field Python examples—Data Management toolbox | Documentation Below is a modified version that will calculate a sequential id like RD-1, RD-2, RD-3, etc. Expression: autoIncrement() Code Block: rec=0
def autoIncrement():
global rec
pStart = 1 #adjust start value, if req'd
pInterval = 1 #adjust interval value, if req'd
if (rec == 0):
rec = pStart
else:
rec = rec + pInterval
return "RD-" + rec
... View more
04-09-2020
07:40 AM
|
1
|
3
|
4797
|
|
POST
|
Hi Joe, You don't have to use the address points. The address points help us provide an estimate of the address number of the site address point by calculating the percent along the road the address point is placed and the distance to offset the site address point from the road. If you would prefer to just place the site address points at the specific location and then populate the address number yourself you can ignore or remove the address points from the project. You can create site address points without the address points by adding feature templates for the site address point layer. By default the project contains no feature templates for this layer. If you manage the templates in the map you should be able to add new feature templates for this layer so you can create the site address points without the need for the address points.
... View more
04-09-2020
07:32 AM
|
2
|
2
|
3696
|
|
POST
|
We haven't documented this, but I would recommend that you install the latest version of the deployment tool add-in. At Pro 2.5 the api was changed and results in a crash in earlier versions of the add-in. You can follow the steps in the help topic below to download and install the latest version: Install the ArcGIS Solutions Deployment Add-In—Get Started | ArcGIS Solutions for Water
... View more
03-31-2020
06:00 AM
|
0
|
0
|
2322
|
|
POST
|
Hi Joe, You can deploy the solution to ArcGIS Online or Enterprise. When you deploy the solution you will have an Address Data Management.zip uploaded in your organization. You can just download it and extract the contents which will contain the pro project and databases. You can then follow the tasks provided in the project to see the workflows and configure in your Enterprise. Review data management project - Address Data Management | ArcGIS Solutions for Local Government
... View more
03-17-2020
02:05 PM
|
1
|
2
|
2177
|
|
POST
|
Everything you describe is accurate and it may cause an issue. The Waze Map Editor is the best way to ensure all closures appear in Waze. The Road Closures solution is intended to support many workflows across an organization and one of the optional things you can do is share with Waze. In regards to the basemap, we deliver the navigation basemap with the solution, but you can change it. I would actually encourage you use your own road network service if you have one available so the closures match your authoritative content. It is possible that Waze has a different name for a street than you have locally in the county and in that case the closure may not display in Waze. It might be an good opportunity to work with Waze as part of the program to improve their road information since you would be the authority on the proper names.
... View more
02-26-2020
01:13 PM
|
2
|
0
|
6889
|
|
POST
|
Thanks Josh, I would say in the solution that the Master Road Name table is primary there to ensure integrity of the road names in your centerlines and site address points. So that being said, having multiple copies of the same road name with different statuses isn't going to add additional capabilities in the solution. So I would just keeping one unique row per road name and municipality.
... View more
02-20-2020
11:43 AM
|
1
|
5
|
4797
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-16-2026 06:03 AM | |
| 1 | 03-05-2026 06:12 AM | |
| 1 | 02-06-2026 09:24 AM | |
| 1 | 11-07-2025 07:59 AM | |
| 1 | 11-06-2025 07:04 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|