|
POST
|
If it’s the same map opened in two views (for example, View 1 and View 2 of Map) - yes—symbology is shared, so a change in one view updates the other automatically. If it’s the same data/layer added to two different maps (for example, Map A and Map B) - no—there’s no built-in “synchronize symbology across maps” setting. Each map has its own layer properties. Alternatives to keep them consistent across different maps Copy/Paste layer properties (Symbology, Labeling, etc.) between layers, even between maps: Copy and paste properties between layers or tables—ArcGIS Pro Use Apply Symbology From Layer / import symbology: Import symbology from another layer—ArcGIS Pro
... View more
2 weeks ago
|
0
|
0
|
219
|
|
POST
|
Yes—use Distance Allocation (instead of only Distance Accumulation) so you get both: a distance raster (how far to the nearest/least-cost road), and an allocation raster that stores which source each cell is assigned to. Try these steps: Run Distance Allocation with your roads as the Input raster or feature source data. Set Source field to a road attribute you want carried through (for example ROAD_TYPE), or better, a unique key like ROAD_ID. This must be an integer field though. So perhaps you calculate a ROAD_TYPE field of 1 for interstate, 2 for US Highway, 3 for State Highway and so on. Use the outputs: Output Distance Accumulation Raster = distance to the closest/least-cost road. Output Distance Allocation Raster = the value of your Source field for the road that each cell is allocated to.
... View more
2 weeks ago
|
1
|
0
|
212
|
|
POST
|
ArcGIS Pro doesn’t have an application setting to prevent a layout from opening another view/tab when you double-click it in the Catalog pane. A layout can have multiple open views, so each open action can create another tab. Here are some options you can use instead: Switch to the already-open layout tab rather than reopening Close duplicates quickly (right-click a layout tab > Close, or close the tab group).
... View more
2 weeks ago
|
0
|
0
|
201
|
|
POST
|
I wish I had a good answer for you, but I do not. The only "why" I found in support cases are "Map Notes are intended for visualization and annotation purposes only and are not recommended for data that will be shared or used in Web Maps."
... View more
2 weeks ago
|
0
|
0
|
108
|
|
POST
|
With regards to a Map Notes layer not being shareable as a web layer - correct - this is not possible. According to the Help documentation - "Map notes are not supported when sharing as a web scene or web layer. Use the Copy Features tool to copy a map notes layer to a new feature class." 24078: Layer's data source is not supported: <value> | ArcGIS Pro documentation
... View more
2 weeks ago
|
0
|
2
|
114
|
|
POST
|
Most effective is a one-to-one Spatial Join and set the zone-name field’s Field Map merge rule to Concatenate. Try these steps: 1. Run Spatial Join (Analysis) or Add Spatial Join (Data Management). - Target features = Points - Join features = Zone polygons - Join operation = Join one to one - Match option = Within (common for points-in-polygons) 2. Expand Field Map. - Find the polygon field that has the zone name (e.g., `ZoneName`) - Set Merge rule/Action = Concatenate - Set Delimiter = `, ` Output: each point gets a single field like `ZoneA, ZoneB, ZoneC` when it falls in multiple overlapping zones. I tested this on data setup exactly as your screen graphic and it worked for me. Yes, it does create a new feature class but I guess you could copy/paste it to another point feature class?
... View more
2 weeks ago
|
1
|
0
|
295
|
|
POST
|
Question: Is the map view closed? If so, go to the Catalog Pane, on the Project tab at the top of the Catalog Pane, expands Maps, and you "should" see your maps in your Project file. If you don't see the Catalog Pane, click the View tab at the top and in the Windows group, click Catalog Pane.
... View more
2 weeks ago
|
0
|
0
|
177
|
|
POST
|
It’s expected behavior (not a bug): a saved .fieldmap from Export Table is tied to the specific input dataset/layer it was exported from. If the input table is different (including a different name/source), ArcGIS Pro will reset the Field Map when you try to load it: Use the Load option to load a .fieldmap file. The feature layer or dataset specified in the file must match the dataset used in the tool. Otherwise, the Field Map parameter will be reset. - Export Table (Conversion Tools) | ArcGIS Pro documentation Workarounds to use in a Task 1) Make the input dataset identity match. In the Task, add a step that ensures the incoming CSV/XLSX is brought in with the same table name as your template (for example, copy/rename it into a file geodatabase table with a fixed name), then run Export Table and load the .fieldmap. 2) Define the CSV field types/lengths before importing. For CSV specifically, use schema.ini to control types/lengths up front, then you won’t be fighting the 8000-length default. Esri documents schema.ini as the supported workaround for controlling how CSV fields are interpreted BUG-000174571 for ArcGIS Pro 3) Use Python (FieldMappings) instead of loading a .fieldmap. If you need the Task to work regardless of the input table name, the robust option is a script tool that builds `FieldMappings/FieldMap` dynamically against whatever input is provided. Mapping input fields to output fields | ArcGIS Pro documentation
... View more
2 weeks ago
|
0
|
1
|
240
|
|
POST
|
In the Copy and paste properties between layers or tables Help documention here - Copy and paste properties between layers or tables | ArcGIS Pro documentation - there is a Paste Properties commend where you can paste only the display filters to the other layer. Would this work?
... View more
2 weeks ago
|
0
|
0
|
115
|
|
POST
|
In full transparency, I did a somewhat deep dive using the Esri Support AI Chatbot for this question as it falls outside of my expertise. Testing of suggested workflows below are strongly recommended: <CLIP> Let me know if this works (or does not work) and I'll examine support cases for you. Large min/max EVI values in ArcGIS Pro with Landsat 8/9 **Collection 2 Level-2 SR** are usually caused by one (or more) of these: 1) **Computing EVI on unscaled integer DN values (or not forcing float math)** L2 SR bands are stored as integers; EVI should be computed on **scaled reflectance as floating point**: **SR = DN * 0.0000275 + (-0.2)** 2) **Including invalid pixels (clouds/shadows/water-fill) or SR values outside a valid range (often negatives)** Those pixels can blow up the EVI denominator and produce extreme outputs. Esri recommends masking out unwanted pixels using the QA band and excluding out-of-range SR values because they can cause band indices to be wrong. Reference workflow: [Clean up your Landsat imagery: removing cloud and cloud shadow](https://www.esri.com/arcgis-blog/products/arcgis-pro/imagery/clean-up-your-landsat-imagery-removing-cloud-and-cloud-shadow) 3) **Wrong band mapping/order** EVI expects **NIR, Red, Blue**. For Landsat 8/9 that is **B5 (NIR), B4 (Red), B2 (Blue)**. EVI formula reference: [Band Arithmetic function—ArcGIS Pro](https://pro.arcgis.com/en/pro-app/3.4/help/analysis/raster-functions/band-arithmetic-function.htm) ## How to obtain valid EVI Try this approach: - Mask clouds/shadows (and other unwanted categories) using the **QA** product (set unwanted to NoData). - Optionally mask SR DN outside a reasonable range (commonly **0–10000** in DN space) before scaling (per Esri’s guidance in the blog above). - Scale B2/B4/B5 to float reflectance (DN * 0.0000275 - 0.2). - Compute EVI: **2.5 * (NIR - Red) / (NIR + 6*Red - 7.5*Blue + 1)** <END CLIP>
... View more
2 weeks ago
|
0
|
0
|
88
|
|
POST
|
There was a BUG-000135326 for ArcGIS Pro that was non-reproducible in November 2020 seen at 2.6.3 with a workaround of "Adding the geocoding service URL as a geocoding service in the ArcGIS Online organization's settings ensures the geocoding works with no issue. The issue only seems to occur when adding it as an item in ArcGIS Online." Further, there is an Analyzer message of 00339 that lists items/solutions that may be relevant to version compatibility - 00339: Locator was built with roles or capabilities not compatible for sharing to this version of ArcGIS Server | ArcGIS Pro documentation
... View more
2 weeks ago
|
2
|
1
|
244
|
|
POST
|
Not exactly what you're looking for but something to be aware of. If you go to Project->Options->Map and Scene tab, under the Add Layers and Tables item, there is a check box you can disable that says - "Make newly added layers visible by default" - like I said, not 100% what you're looking for but a start. Your workflow is worthy of an ArcGIS Idea as mentioned above.
... View more
2 weeks ago
|
1
|
0
|
264
|
|
POST
|
@DEAF_PROBERT_68 - I found an ArcGIS Pro *.stylx file that has a point symbol called "underground storage tank" that is close to the symbol you have on the map. You can download the *.stylx file here - Government ArcGIS Pro Style 3.x - Overview
... View more
2 weeks ago
|
1
|
0
|
205
|
|
POST
|
In full transparency, I did a deep dive using the Support AI chatbot on Esri Support Services - so testing is 100% required to see if this workflow would work: <CLIP> On ArcGIS Enterprise on Windows, the supported way to refresh only the cached tiles impacted by mosaic dataset changes is to use a dirty area polygon to drive a partial cache rebuild (instead of Overwrite Web Layer). Try these steps: Update the mosaic dataset (add/replace orthophotos, run your mosaic maintenance as needed). Run Compute Dirty Area on the mosaic dataset to generate a feature class of the modified (“dirty”) areas. Rebuild cache tiles only for that AOI using cache management (Manage Cache > Manage Tiles / the geoprocessing tool Manage Map Server Cache Tiles) so it overwrites tiles intersecting the dirty areas rather than recreating the entire cache. Esri doc (12.1) explicitly describes this workflow: What is image service caching? | ArcGIS Enterprise on Windows and Linux documentation (section “How do I update my image service cache?”) Related cache management entry point: Creating an image service cache | ArcGIS Enterprise on Windows and Linux documentation <END CLIP> Question - would this work in your environment?
... View more
2 weeks ago
|
2
|
0
|
178
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|