|
BLOG
|
Most days the convention center runs a bag check on the main floor near the center of the SDCC.
... View more
07-01-2019
01:57 PM
|
1
|
0
|
2164
|
|
POST
|
I suggest trying the Slice tool with the EQUAL_AREA option. This will split your data by its input statistics.
... View more
06-30-2019
10:50 AM
|
2
|
0
|
2925
|
|
POST
|
That's great. Model Builder is really useful, but sometimes your workflow just requires a Python script!
... View more
06-29-2019
12:12 PM
|
0
|
0
|
3067
|
|
POST
|
Tyler, as much as it pains me to say this, major updates to ArcMap to fix architectural shortcomings like this are not going to happen at this stage. If your workflow makes heavy use of basemaps and the suggestions above do not work for you, I would look into seeing if ArcGIS Pro will work for you,. ArcGIS Pro handles basemaps and web content much better, because it was designed in 2014, not 1998.
... View more
06-29-2019
11:56 AM
|
1
|
0
|
11452
|
|
POST
|
Thanks so much Paul Lohr for the kudos! I appreciate very much to know that my post helped you. Could you post your Calculate Value code you used to do the field map? Always great to have actual working examples! I would suggest making Output Values a precondition to Calculate Value to make sure the layer is created before Calculate Value runs. It did work for you without precondition set up but doing adding that connection both 1) makes absolutely sure things happen in the order they should and 2) helps users of the model easily see the flow of things in your processing.
... View more
06-29-2019
11:47 AM
|
0
|
0
|
2755
|
|
BLOG
|
Wow, Dan, you didn't waste any time. Thank you! I have found the link to check to see if your computer can run Pro (Can You Run It) is very helpful, I recommend it to all before installing Pro, you'll learn some good things to know about your setup. In our university setting, I find it very helpful to post the software locally on our network drive with my install script. I copy this install setup folder to USB drives in lab so everyone doesn't hit it at once! All users have to do double-click the script. A plus is current patches are plopped in there and get automatically applied. ArcGIS Pro silent install script
... View more
06-29-2019
11:11 AM
|
1
|
0
|
2552
|
|
BLOG
|
I couldn't agree more. In years past I would download this q&a and read on the plane on the way there! Need a "download pdf" button!
... View more
06-26-2019
03:56 PM
|
3
|
0
|
2164
|
|
POST
|
I've seen all kinds of media. I don't think it matters as long as the thumbtacks can hold it up!
... View more
06-22-2019
01:48 PM
|
2
|
0
|
741
|
|
POST
|
There is an open incident with support on this (#02347527 ArcGIS Pro crashes when a GP tool coded in R (RStudio) is run) which has been including crash dumps and some analysis. No luck so far, though on the plus side support has been able to repro this issue and are testing.
... View more
06-22-2019
01:47 PM
|
0
|
0
|
3479
|
|
POST
|
Here's my method. Ran this from ArcMap and Pro python.exe's to get the list. import arcpy
for k in range(999999):
try:
dsc = arcpy.GetIDMessage(k)
if dsc:
print("{:6d} {}".format(k, dsc))
except:
pass The diff is kind of fun, note they have tried to be consistent so your error IDs will work with one code for both arcpys. --- a/gpcodes_arcmap106.txt
+++ b/gpcodes_pro23.txt
- 203 %s Cannot contain representations
+ 203 %s cannot contain representations
- 357 End type option invalid with the ArcView or ArcEditor license
+ 357 End type option invalid with a Basic or Standard license
- 377 The Side type option is invalid with an ArcView or ArcEditor license
+ 377 The Side type option is invalid with a Basic or Standard license
- 384 Cannot have more than 2 inputs with the ArcView or ArcEditor license
+ 384 Cannot have more than 2 inputs with a Basic or Standard license
- 574 Python 2.7 is not installed.
+ 574 Python is not installed.
- 707 Spatial reference of the tiling scheme does not match the spatial reference of the data frame
+ 707 Spatial reference of the tiling scheme does not match the spatial reference of the map
...
... View more
06-19-2019
04:56 PM
|
1
|
0
|
7570
|
|
DOC
|
These codes are in the 10.2 help but not in the current help for Desktop or Pro. They seem to be in the help somewhere, but they are hard to find by search. Why these lists: using the codes with the AddIDMessage method is better than just reporting text messages -- because it links your Python Geoprocessing tool validation errors and tool errors directly to Esri's help information. This makes a tool work well with a wider audience, as Esri translates the error codes for use in other language environments. Here's a script I used to generate these lists with arcpy: import sys
import arcpy
for k in range(1000000):
try:
dsc = arcpy.GetIDMessage(k)
if dsc:
print("{:6d} {}".format(k, dsc))
except:
pass Where is the list of geoprocessing error codes?
... View more
06-19-2019
04:34 PM
|
1
|
0
|
3040
|
|
POST
|
Where did the documentation go for GP error codes? I can find them in the 10.2 help but not in the current help for Desktop or Pro. I like to use arcpy AddIDMessage method because this allows you to link your Python Geoprocessing tool validation errors and tool errors directly to Esri's help information.
... View more
06-19-2019
03:29 PM
|
1
|
8
|
8857
|
|
POST
|
Great! Also see: Formatting date as string from user input date value in ModelBuilder
... View more
06-19-2019
03:21 PM
|
0
|
0
|
2407
|
|
POST
|
Great, also see: Formatting date as string from user input date value in ModelBuilder
... View more
06-19-2019
03:21 PM
|
0
|
0
|
3939
|
| 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
|