|
POST
|
I don't exactly understand what you want to do, but if it's what I think, you may want to add fields more - Federal Facility type a, Federal facility type b... but it might get a bit too much. Might be best to copy your layer and do a definition query or selected export of just those federal sites (remove or definition query the sites from the original layer). You could then use the same facility type fields but just choose a different colour ramp or field names.
... View more
03-08-2023
11:36 AM
|
1
|
0
|
4160
|
|
POST
|
What does your data look like? You could probably have a single field for each facility type, then just populate it with a 1 for yes and leave blank if it doesn't exist. Doesn't work great when you have lots of facility types however. Solution really depends what your data looks like
... View more
03-08-2023
10:11 AM
|
1
|
2
|
4172
|
|
POST
|
I'd try removing an re-adding your server or portal connection. Sometimes it shows as active and signed in but has funky behaviour and then behaves after re-adding.
... View more
03-08-2023
09:34 AM
|
0
|
1
|
1433
|
|
POST
|
Yes, https://desktop.arcgis.com/en/arcmap/latest/map/map-export-and-print/exporting-to-pdf.htm 'PDF Layers' section
... View more
03-08-2023
06:19 AM
|
0
|
0
|
809
|
|
POST
|
Have you added those new values as domain values? Your existing domains would be pointless anyway after the update cursor wouldn't they? Delete the domain then batch add Table to Domain after the cursor operation I would say. (fyi spelling on Oregon)
... View more
03-07-2023
01:11 PM
|
0
|
1
|
3169
|
|
POST
|
Isn't it just a common calculation based on divisions of 100 i.e. 100/0.01, 100/0.02, 100/PlotSize ?
... View more
03-07-2023
10:44 AM
|
0
|
0
|
2083
|
|
POST
|
I'm guessing the clip raster tool in model builder isn't calculating statistics or somehow not producing a raster attribute table. I would ensure RasterStatistics options are set in the environments settings of the clip raster tool in model builder https://pro.arcgis.com/en/pro-app/latest/tool-reference/environment-settings/raster-statistics.htm and maybe play around with adding the build raster attribute table tool as a process after the raster is generated and before export table https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/build-raster-attribute-table.htm Can you check in the attribute table of the iterated output rasters and see what columns are available? I'd also recommend posting this new issue as a separate problem so it gets more traction for new views, and it helps to logically separate issues for posterity.
... View more
03-07-2023
10:13 AM
|
0
|
1
|
3565
|
|
POST
|
It looks ok, did you delete the CSV that's already in there? Does it run once, produce then error? Your filename in the screenshot doesn't match up with the other screenshots so I'm not quite understnading.
... View more
03-07-2023
05:17 AM
|
0
|
3
|
3572
|
|
POST
|
It's no work of art but it may give you an idea of what may be needed. Assumption that the string length and format never changes. //cast your number to a string
var string = Text($feature.PARCELID)
//make a list of each character in the string
var splitString = Split(string,"")
//shorten variable name for ease of reading
var sS = splitString
//logic to construct output string, incomplete
sS[0] + sS[1] + "-"
+ sS[2] + +sS[3] + "-"
... View more
03-06-2023
03:41 PM
|
1
|
3
|
5490
|
|
POST
|
For your Iterate Feature Selection add a Group By field of 'ISO' this will then mean you 'Value' output from each iteration will be the string of each iterated row e.g. 'ABW' for the first iteration. You will use this value as an inline variable for your output raster name. Clip Raster - what's the exclamation mark popup message? What workspace are you saving to - folder or geodatabase? If a folder it would need the filename to have an extension e.g. .tif Output Raster Dataset - this is where you use the Value output name to name your file. Try: %Value%_test.tif if in a folder workspace or %Value%_test if in a gdb. I'd also suggest saving as a tif in a folder rather than a gdb if so anyway.
... View more
03-06-2023
09:49 AM
|
1
|
5
|
3585
|
|
POST
|
The first model runs OK without the iterator? If so then we can fortunately rule out a data issue. Are you using inline variable substitution to name the output rasters? Can you share a screenshot of the properties of: Iterate feature selection Selected features Clip raster in the second model.
... View more
03-05-2023
06:26 AM
|
1
|
7
|
3628
|
|
POST
|
I've not actually used the split raster tool. It may not be ideal even if it does work as it just suffixes a sequential number to the output raster. I can see some options being set such as pixel size - did you set those or are they defaults? I'd suggest leaving everything optional as blank and just specifying split type and split polygon options. There's a post here (arcmap but the principle is the same) for how I'd prefer to control the output names by iterating through the polygon features in an iterator/for loops and either 'clip' or 'extract by mask'. As the post states please be aware of cell size and snap raster environments (look up what they are and why they are important also). https://gis.stackexchange.com/questions/382395/splitting-raster-by-polygons-and-defining-output-names-using-arcmap
... View more
03-05-2023
06:09 AM
|
0
|
0
|
4068
|
|
POST
|
Overview page - https://solutions.arcgis.com/shared/help/data-loading/get-started/overview.htm How to setup - https://solutions.arcgis.com/shared/help/data-loading/get-started/install-the-data-loading-tools.htm
... View more
03-04-2023
01:05 PM
|
1
|
2
|
1772
|
|
POST
|
if ($feature.explosives_manufacturer == 'SMASH' &&
$feature.Controller_Name__Current_ == 'ALC')
{return 2}
else if ($feature.explosives_manufacturer == 'SMASH' &&
$feature.Controller_Name__Current_ == 'QVC')
{return 3}
else {return 1}
... View more
03-03-2023
11:50 AM
|
1
|
0
|
3556
|
|
POST
|
https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/dissolve.htm dissolve field = ISO multipart = depends on your requirement, possibly multi_part
... View more
03-03-2023
10:54 AM
|
1
|
0
|
4083
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-17-2023 12:44 PM | |
| 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 |
| Online Status |
Offline
|
| Date Last Visited |
07-06-2026
06:42 AM
|