|
POST
|
Bigger page layout. Probably something like A4 vs A3. The scale text is only correct when physically printed at that size, or in displayed on-screen at that exact layout size.
... View more
02-04-2025
02:11 PM
|
2
|
3
|
5136
|
|
POST
|
It's tricky and maybe not worth the effort depending on your goals. I'd look first to see if you can identify certain colours which are only used for the contours. This is probably hopeful but worth a shot. Then https://pro.arcgis.com/en/pro-app/latest/tool-reference/spatial-analyst/reclassify.htm, setting the other values to NoData. https://pro.arcgis.com/en/pro-app/latest/tool-reference/conversion/raster-to-polyline.htm Raster to Polyline (use simplified) to get the contours. You'd then have to label/attribute the contours manually and probably do alot of manual cleanup editing as the colours are probably used elsewhere in the map, and for the original raster contour labels. I'd recommend looking for a DEM and generating some fresh contours off those and see how they line up instead.
... View more
02-04-2025
07:59 AM
|
0
|
1
|
1970
|
|
POST
|
I don't think there's any tools to do that. Even a workflow using Observer Points would only take 16 input points. There may be something more elegant, but I would be tempted to just run a viewshed for each point, polygon to raster the visible area, select points falling within that area and extract and append their IDs to a master FC (you can clean up the ordering using Field Calculate after). This is all in a Python script of-course. Be sure to utilise the Memory workspace and certainly initially test and sanity-check a small subset.
... View more
02-02-2025
02:59 PM
|
2
|
0
|
779
|
|
POST
|
Hi, I have a Hosted Feature Service Webhook configured in the REST API Admin endpoint. change types : FeaturesCreated,FeaturesUpdated,FeaturesEdited,AttachmentsCreated
schedule info:
{
"name" : "",
"state" : "enabled",
"recurrenceInfo" : {
"frequency" : "second",
"interval" : 30
}
} However it appears to be turning itself off / deactiving after a day or so. Active : False Has anyone experienced this recently or am I missing something or any troubleshooting advice or gotchas? Also aware of apparent previous issue and fix here: https://community.esri.com/t5/arcgis-online-questions/webooks-deactivating-automatically/td-p/1522574 https://community.esri.com/t5/arcgis-for-power-automate-blog/8-15-24-update-and-quick-fix-for-issues-with/ba-p/1522578 Thanks
... View more
02-02-2025
09:21 AM
|
2
|
2
|
574
|
|
POST
|
Yes certainly, as you correctly call it - 'Map Series' is the data driven pages ArcMap equivalent. https://pro.arcgis.com/en/pro-app/latest/help/layouts/spatial-map-series.htm https://pro.arcgis.com/en/pro-app/latest/help/layouts/create-a-map-series.htm Creating a grid index over your area to then power the Map Series is possible through https://pro.arcgis.com/en/pro-app/latest/tool-reference/cartography/grid-index-features.htm or you could use an existing FC and use the polygon extents as map extents, adjusting scale etc. dynamically via attribute table values. You'd also probably find many walkthroughs on YouTube etc.
... View more
01-31-2025
03:08 PM
|
1
|
0
|
1031
|
|
POST
|
Probably Field Calculate in the same way the values were originally changed. Be aware this modifies the source data so try on a local copy first, and always keep a backup for some time. https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/calculate-field.htm https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/calculate-field-examples.htm Ensure you past the the 'Code Block' at the bottom of the Field Calculator window. then above the Code Block you will have something that looks like <fieldname being calculated> = in the box below that enter (obviously replace with your fieldname): Reclass(!Environmental Setting! ) Expression:
Reclass(!Environmental Setting!)
Code Block:
def Reclass(field):
if field == 'Hammock':
return 'Pasture'
elif field == 'Elephant':
return 'Grass'
elif field == 'Rhino':
return 'Arable'
else:
return field
... View more
01-31-2025
02:27 PM
|
1
|
0
|
754
|
|
POST
|
Ah this took some head scratching but I think the best way is to run Feature to Polygon on your single FC https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/feature-to-polygon.htm which will break up the features where they intersect and preserve non intersecting similar to Union. Next step is a spatial join with a field merge rule of Mean on your value field. https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/spatial-join.htm Target = Feature to Polygon output, Join = Original FC, Match = Intersect, Field Map Merge Rule = Mean Final step will be to run your Polygon to Raster .
... View more
01-31-2025
10:56 AM
|
0
|
0
|
983
|
|
POST
|
You've installed the extension? It's an additional separate installation. valid install will show a folder here: C:\Program Files\ArcGIS\Data Interoperability for ArcGIS Pro
... View more
01-30-2025
09:22 AM
|
0
|
2
|
1667
|
|
POST
|
It's not in quite the right format to be time-enabled yet. Each year and location/area will need its own row in the table. as below. Something like Transpose Fields https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/transpose-fields.htm or wrangle it in Excel, Pandas etc. You'll also need to join a geometry or X and Y to each location field. Location Code Year Percent Illness 1 2017 52% 1 2018 32% 2 2017 45% 2 2018 47% 3 2017 63% 3 2018 75%
... View more
01-30-2025
05:10 AM
|
0
|
1
|
893
|
|
POST
|
Ah I see, looks like you may have to' create the label classes from the symbology'. described here (be aware to untick the 'Color' box as that will create a label of the same symbol colour and then not be visible.. : community.esri.com/t5/arcgis-pro-questions/how-to-label-based-on-quot-label-quot-value-in/td-p/1205765 You'd then have to then go into each Class and type 'Pond' , 'River' into the box etc.
... View more
01-30-2025
04:42 AM
|
1
|
0
|
2085
|
|
POST
|
Well as long as you get the correct marker values into 2 fields irrespective of them being mixed up/wrong way around, and assuming that the 'to' will be the highest value marker, then it shouldn't be that hard to sort out. I'd create 2 additional final fields and field calculate the highest and lowest values into those respective fields. The answer is pretty recent here: https://community.esri.com/t5/arcgis-pro-questions/how-do-i-add-a-field-for-the-predominant-geologic/m-p/1579879#M92410 for the 'final' from field (lowest). Ensure you past the following into the 'Code Block' at the bottom of the Field Calculator window. def minValue(*args):
filtered = [arg for arg in args if arg is not None]
return (min(filtered)) if filtered else None then above the Code Block you will have something that looks like <fieldname being calculated> = in the box below that enter (obviously replace with your fieldnames: minValue(!yourField1!, !yourField2! ) For your final 'to' field (highest) def maxValue(*args):
filtered = [arg for arg in args if arg is not None]
return (max(filtered)) if filtered else None then above the Code Block you will have something that looks like <fieldname being calculated> = in the box below that enter (obviously replace with your fieldnames: maxValue(!yourField1!, !yourField2! )
... View more
01-29-2025
04:18 PM
|
0
|
1
|
1640
|
|
POST
|
I think the simplest way to do it would be to create new points at the Start and End of your lines and then Spatial Join them over a few steps. 1. Feature Vertices to Points tool - specify 'START' option. https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/feature-vertices-to-points.htm 2. Spatial Join to append the attributes of the nearest Milepost to the start. https://pro.arcgis.com/en/pro-app/latest/tool-reference/analysis/spatial-join.htm 3. Feature Vertices to Points tool - specify 'END' option. 4. Spatial Join to append the attributes of the nearest Milepost to the End. 5. Clean-up the final table and rename your fields as needed.
... View more
01-29-2025
03:39 PM
|
0
|
3
|
1656
|
|
POST
|
Depending on your Pro version - https://community.esri.com/t5/arcgis-pro-questions/how-to-create-a-horizontal-legend-in-arcpro-3-1/td-p/1267141
... View more
01-29-2025
12:30 PM
|
1
|
0
|
719
|
|
POST
|
Have you got verbose/debug logging enabled? What gives you the thought of it being the Data Interop extension? It would need to be licensed on the Server if it's used in some capacity, but would have hoped it was caught in publishing validation.
... View more
01-29-2025
12:03 PM
|
0
|
0
|
1095
|
|
POST
|
My take (not a geodesist): A Spheroid for a specific regional area can better approximate the Geoid over that area - as opposed to WGS84 which is the best approximation of the World Geoid. The Spheroid (by name) is not a sphere, so the parameters that influence its shape (major and minor axes) aren't solely the origin datum point. Certain spheroids will still also be available to align historical mapping etc. Millimetre level refinements might be yet more accurate and available - but don't justify updating the current definitions in terms of practicality and effort.
... View more
01-29-2025
12:00 PM
|
0
|
0
|
909
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-13-2025 01:08 PM | |
| 1 | 09-25-2025 03:19 PM | |
| 1 | 09-24-2025 02:35 PM | |
| 1 | 09-17-2025 02:42 PM | |
| 1 | 09-10-2025 02:35 PM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|