|
POST
|
I suggest running summary statistics on the excel table, output to a gdb table. Use city code as a case field so you will have one row per city points, choosing the stats you want. Then Add Join to add the summary table fields to your point table. Some of these (no matches) will have NoData values, you can use the option on the Add Join tool to leave no-matches out of the table. Then you can go ahead and use your tools to make a map, do analysis etc. as the the fields you want will be available in the point table.
... View more
04-20-2021
07:51 AM
|
0
|
0
|
3180
|
|
IDEA
|
For right now, you could use the time functions in python check the time (with an if statement) and exit the notebook before doing anything for off hour runs.
... View more
04-20-2021
07:32 AM
|
0
|
0
|
4159
|
|
POST
|
I fixed the bug (missing %) above, sorry about that. Please mark my answer as the solution to help others with the same question! (Honestly I don't care about the points but it helps people find answers!)
... View more
04-20-2021
07:24 AM
|
0
|
0
|
3454
|
|
POST
|
No, the first solution was purely python based, where you write a python function with the calculate value tool to write the values from the tool output (I believe they are exposed as output parameters) using an arcpy cursor - pretty involved if you haven't used much Python yet, but not too difficult. If you run the tool in model edit mode, no, you can't access the message stream, it's gone. However, if you run the model as a tool from the Geoprocessing pane, the messages are captured to the geoprocessing results window (ArcMap) or the geoprocessing history messages (ArcGIS Pro) so you can get them there. Hope this helps you out!
... View more
04-19-2021
06:17 AM
|
1
|
0
|
3462
|
|
POST
|
My advice (from the school of hard knocks) is to never place raster datasets in a folder that has special characters (yours has -, & and space: a trifecta). Not only in the raster name, but in the entire path. The most likely issue is the &. How To Name Things In ArcGIS
... View more
04-17-2021
11:35 PM
|
2
|
0
|
944
|
|
POST
|
See in the help for python examples: Write geometries. Or (MUCH easier!) create a table with your xy values in it and use the XY Table To Point, or Make XY Event Layer tools to create your points.
... View more
04-17-2021
09:07 PM
|
0
|
0
|
1383
|
|
POST
|
Given you haven't mentioned which application, programming language, or environment you are using... and no code examples or error messages... It sounds you may be using arcpy cursors - these are best used with a "with" construct (see the help) instead of manually deleting them (with del, not arcpy.Delete_management, which is for datasets and layers). It sounds like you are trying to be very complex, I suggest breaking your problem into smaller pieces, get them working, and re-build by aggregating working pieces. If you are using arcpy and Pro, I have found the new Jupyter notbook functionality in Pro to be really great for getting pieces of code working.
... View more
04-17-2021
08:57 PM
|
0
|
0
|
1148
|
|
POST
|
I just tried this with Pro 2.7.2 and Pro recognized the .asc files just fine (both in the Catalog pane and in the Copy Raster tool dialog). What version are you using? If there are 2000 of them, you may want to convert to .tif and then consider create a mosaic dataset, then maybe Copy Raster to convert that to a single massive gdb raster or tiff. If you are familiar with python, just get the syntax of the Copy Raster tool by running it once, right clicking on the geoprocessing history for the tool and copy with python snippet, and paste into python and write a loop around it, sticking your loop variables in it. Try this test raster to see if the problem is your data set (save as "test.asc") NCOLS 5
NROWS 5
XLLCORNER 0
YLLCORNER 0
CELLSIZE 1
NODATA_VALUE 0
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
... View more
04-17-2021
08:50 PM
|
2
|
1
|
5378
|
|
POST
|
Also Resetting your ArcGIS application profile and: make sure your windows default printer is set to a real device (or PDF) with current drivers.
... View more
04-17-2021
08:34 PM
|
1
|
0
|
5030
|
|
POST
|
My only suggestion is check to see if your geoprocessing history is getting huge, that can grow your aprx pretty big if you run a lot of tools.
... View more
04-11-2021
11:02 AM
|
1
|
0
|
2304
|
|
POST
|
Have you tried updating your ESRI folder? Resetting your ArcGIS application profile
... View more
04-11-2021
10:59 AM
|
0
|
1
|
8349
|
|
POST
|
This all sounds good to me. I am not that versed in the details of how python does things as much as you are! You may have run into a bug in the snap pour point tool that should be fixed, please report it! I wonder if your deferred-save scheme is similar to what the raster tools do when they only execute the tool if you call .save() or use it in executing a calculation later ("deferred execution" is what Esri raster heads call it). Thanks for this thread, it was illuminating to me.
... View more
04-08-2021
12:01 PM
|
0
|
1
|
1196
|
|
POST
|
I just tested this with ArcMap 10.8.1 and they show up for me in the toolbar > Explore Data > Voronoi map. Maybe try changing the color map or a different dataset?
... View more
04-06-2021
07:52 PM
|
0
|
1
|
1867
|
|
POST
|
If you are outputting to file geodatabase, I would try output to TIFF (.tif) format first and then import to geodatabase.
... View more
04-06-2021
04:10 PM
|
0
|
0
|
3258
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-11-2021 01:26 PM | |
| 5 | 12-10-2021 04:58 PM | |
| 1 | 02-27-2017 09:30 AM | |
| 2 | 12-04-2023 01:05 PM | |
| 1 | 04-12-2016 10:17 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-19-2024
12:10 AM
|