POST
|
I would like to see this functionality extended to ArcGIS Pro tables. My use case: -I have a road map with index grid and would like to bold attributes that only contain 1 character (A, B, C etc.) to make my 'legend' a little easier to navigate
... View more
09-02-2022
11:45 AM
|
0
|
0
|
2484
|
POST
|
Hi everyone, Around the end of last week I started having issues accessing the ESRI World Geocoding service. Some of my public apps are now asking users to sign in for access. Is this something that ESRI has recently disabled or perhaps there is a new URL to the REST endpoint that I am not aware of?
... View more
08-29-2022
08:07 AM
|
0
|
0
|
284
|
POST
|
Does anyone know if the URL to the ESRI geocoder has been changed? One of my public facing apps has started to ask users to login when they try to type an address in the search bar and I get the following error when trying to access the service now:
... View more
08-23-2022
06:03 AM
|
1
|
2
|
3363
|
POST
|
Is it possible to group layers in map viewer classic and toggle both layers visibility on/off at the same time? I created a web app with some property information. My zoning layer contains hatched fill polygons with coloured backgrounds which I recently found out does not translate over to ArcGIS Online when shared as a webservice (Hatched fills and how to sneak them into ArcGIS Online (esri.com)). To get around this issue, I am hosting 2 zoning layers in my Web App, one with the hatched fill and one with a solid white colour fill to mimic the symbology that I want to appear in the map. I only display the layer with the hatched fills in the legend (I don't want the zoning layer to appear twice in the legend and the user doesn't need to see the white colour fill in the legend). Now my problem is that when the user turns off my hatched zoning layer, the coloured background layer does not turn off. Unfortunately I do not have access to Adobe Illustrator to create my own picture fill symbols as suggested by John in his blogpost which is why I am using the method above.
... View more
07-29-2022
08:38 AM
|
0
|
2
|
440
|
POST
|
Thanks for bringing that to my attention! I made a copy of my original data and shared that as a web layer to AGO. The original data contains coded values and unfortunately the copy did not write the text to my new field as I assumed it had. So as it stands there is nothing in the field to split. My plan is to use a series of if statements to populate the data I need unless there is a simpler way.
... View more
07-29-2022
07:13 AM
|
0
|
0
|
4429
|
POST
|
I'm trying to use the Pop method to return "Environmental Protection" in my pop-up but instead it returns "EP". Can someone please let me know why the text before the dash is being returned?
... View more
07-28-2022
01:48 PM
|
0
|
1
|
4439
|
IDEA
|
My organization is configuring a tree inspection application that requires a large picklist of scientific tree names in the app/attribute table. I would like the ability to upload a .csv file of domains similar to what I am able to do in other ESRI products such as Survey123 Connect.
... View more
07-27-2022
07:52 AM
|
0
|
0
|
1675
|
IDEA
|
Would love to be able to customize the names of map series PDFs! For my current workflow, I would like to use a combination of values that are store in my attribute table as the output names i.e. LicencesID and AddressLocation. I can have multiple licenses at the same address so I am not able to use the address field as the output name and the average person hasn't memorized which license is associated with which location so we have to cross reference the license ID anytime we are looking for a map at a specific address. I'm able to use dynamic values to show attribute information in the legend, can this concept be utilized in the naming conventions of the exported maps as well?
... View more
07-20-2022
09:42 AM
|
0
|
0
|
2104
|
POST
|
Does anyone know if this symbol set is available for use in ArcGIS Pro, and if so, where?
... View more
06-23-2022
06:49 AM
|
7
|
0
|
8206
|
POST
|
How could I calculate the farthest distance from a point location to a polygon edge? I have a water intake point and a protection zone polygon and would like to draw a circle around both that touches the farthest edge of the polygon.
... View more
06-22-2022
11:59 AM
|
0
|
0
|
996
|
POST
|
Someone helped me solve the issue here: https://community.esri.com/t5/arcgis-pro-questions/can-arcade-be-used-to-populate-centreline-to-from/m-p/1181565/thread-id/56021#M56046
... View more
06-10-2022
07:42 AM
|
1
|
0
|
1198
|
POST
|
That worked perfectly, thank you! I just reworked the last couple lines to remove duplicated road names on dead end roads (i.e. a dead end road that intersects wellington main st. would have a value of WELLINGTON MAIN ST, WELLINGTON MAIN ST) // remove repeating road names i.e. for dead end roads
var unique_name = Distinct(road_names)
// concatenate and return
return Concatenate(unique_name, ", ")
... View more
06-10-2022
07:16 AM
|
0
|
0
|
655
|
POST
|
I think I'm getting close here. I created a model to iterate through my road layer and perform the following calculation on the From field: var fsRoadName = $feature.Road_Name;
var fsPointName = FeatureSetByName($datastore, "Start_Intersect",["Road_Name"],true);
var intersectLayer = Intersects(fsRoadName,fsPointName);
var Result = [];
//grab Road ID for the point
for (var i in intersectLayer){
var RoadName = i.Road_Name;
}
// evalulate if the road names are not the same
if (fsRoadName != RoadName){
Push(Result, RoadName);
return Result;}
else {
return null;}
... View more
06-09-2022
12:06 PM
|
0
|
0
|
1208
|
POST
|
I'm looking for a way to automate the process since there are ~2000 lines in my road layer. I'm currently trying to create an arcade expression that will select points from the START_INTERSECT layer, look at the Road_Name attribute and return the Road_Name that does not match the Road_Name of the centreline. i.e. 2 points intersect with MARY AVENUE, I would like the FROM value to be WELLINGTON MAIN STREET. I think I need to add the point feature class Road_Names to a list/array, compare each item in the array to the Road_Name of the line feature class and return the value that does not match. Not sure what the syntax for that looks like yet.
... View more
06-09-2022
11:34 AM
|
0
|
0
|
1209
|
POST
|
I would like to use modelbuilder and/or field calculator with arcade to extract To/From values at road intersections. I have 2 feature classes. A road centreline layer that is broken up at intersections and I used the Intersect tool to create points at each of the intersections containing the road names. How can I perform the following: - iterate through the road centreline layer - select points that intersect with each centreline - for each point that has a Road_Name that is not the same as the centreline Road_Name, append each to the ToFrom field delimited by a comma (,) For example, in my screen capture I would like the To/From field for my Wellington Main St. centreline to display MARY AVENUE , SKIFF COVE ROAD
... View more
06-09-2022
11:17 AM
|
1
|
2
|
683
|
Title | Kudos | Posted |
---|---|---|
1 | 06-09-2022 11:17 AM | |
1 | 08-23-2022 06:03 AM | |
1 | 03-30-2021 01:58 PM | |
1 | 06-01-2022 01:31 PM | |
7 | 06-23-2022 06:49 AM |
Online Status |
Offline
|
Date Last Visited |
09-09-2022
04:36 PM
|