POST
|
As of yesterday, this is what you get when searching help on/for a keyword cool layout, simple content... actually no content, selecting Pro version, or the pages yields nothing.
... View more
3 hours ago
|
0
|
0
|
21
|
POST
|
PolygonToRaster still exists Polygon to Raster (Conversion)—ArcGIS Pro | Documentation is there a reason you want to use FeatureToRaster?
... View more
Wednesday
|
0
|
1
|
80
|
POST
|
There is no one-to-one conversion, there are limits Migrate existing work—ArcGIS Pro | Documentation
... View more
Wednesday
|
0
|
0
|
74
|
POST
|
Sorry, I misread and thought that these were new bugs. It would be nice if there was a BUGS_NOT_FIXED to the Release notes for ArcGIS Pro 3.5—ArcGIS Pro | Documentation under Issues Addressed list It would be much easier to keep track of bug version versus current release version
... View more
Tuesday
|
2
|
0
|
312
|
POST
|
Were these reported as bugs previously? They may not be picked up during Beta testing unless it is part of someone's workflow. Report these, maybe they can be resolved a near term patch.
... View more
Tuesday
|
1
|
0
|
333
|
BLOG
|
Making text fields in Pro or any many other tabular formats requires that you specify the field width to accommodate the larges width. If you specify a size too small, data gets truncated, if it gets accepted at all. For example, lets make a small data set which we might want to add to a table. vals = 'abcdefgh' # -- an iterable to extract the values from
# -- generate the values
fld = [vals[i - 1] * i for i in range(1, len(vals) + 1)]
fld
['a', 'bb', 'ccc', 'dddd', 'eeeee', 'ffffff', 'ggggggg', 'hhhhhhhh'] Now we cleverly create an array specifying a "field width"... I will use an array dtype in the following example. z0 = np.array(fld, dtype='U3')
z0
array(['a', 'bb', 'ccc', 'ddd', 'eee', 'fff', 'ggg', 'hhh'], dtype='<U3')
# --- notice that the array isn't correct !!!!!
# --- there is truncation of the input values to a length of 3 (unicode text) Now add a field in a table in Pro and mis-specify the field width and see if the following holds the same as in the NumPy example (it does btw). Soooo, what did NumPy do? They implemented https://numpy.org/neps/nep-0055-string_dtype.html Here is how it works. z0 = np.array(fld, dtype='U3') # -- again with the input data
z0
array(['a', 'bb', 'ccc', 'ddd', 'eee', 'fff', 'ggg', 'hhh'], dtype='<U3')
z1 = np.array(fld, dtype=StringDType()) # -- notice that unicode and size not specified
z1
array(['a', 'bb', 'ccc', 'dddd', 'eeeee', 'ffffff', 'ggggggg', 'hhhhhhhh'], dtype=StringDType())
# -- data size retained!!! This is one of the small obstacles that the arcpy people will have to deal with should they continue to move forward with supporting NumPy > 2.0. A few of the affected... ExtendTable—ArcGIS Pro | Documentation FeatureClassToNumPyArray—ArcGIS Pro | Documentation NumPyArrayToFeatureClass—ArcGIS Pro | Documentation NumPyArrayToTable—ArcGIS Pro | Documentation
... View more
Tuesday
|
3
|
0
|
94
|
POST
|
code examples can be found here ArcGISProject—ArcGIS Pro | Documentation It appears that some of your data can't be located, hence the red ! marks
... View more
Tuesday
|
0
|
2
|
122
|
DOC
|
I created a separate environment from arcgispro-py3. I needed numpy > 2, so I moved on
... View more
Tuesday
|
0
|
0
|
703
|
POST
|
From the documentation Note: Each version of ArcGIS Pro requires specific versions of deep learning libraries. When you upgrade ArcGIS Pro, you need to install the deep learning libraries that correspond to that version of ArcGIS Pro. For the list of libraries required at each version along with other information, see Deep learning frequently asked questions. The libraries lag by a "bit" after a release, so if it is a must, you will have to compare the packages and see if any of the pinned ones are going to cause you an issue. Just monitor Issues and Pull requests on Issues · Esri/deep-learning-frameworks the last mention of the libraries was for 3.5 Beta in April, so I am sure it is coming. In a pinch... be the first to see if the 3.4 libraries fail in 3.5
... View more
Tuesday
|
0
|
0
|
227
|
POST
|
according to the docs that lib2to3 ..... Deprecated since version 3.11, will be removed in version 3.13: check your installation path for a lib2to3 folder (eg C:\...pro install folder\Lib\lib2to3) it is a command line tool so you can use the python command prompt or powershell Pro 3.5 will ship with python 3.11.11 The above image is my 3.13 environment and the utility is still around
... View more
Tuesday
|
0
|
1
|
68
|
POST
|
depending where you live and how you get your software it is dropped, but check out Release notes for ArcGIS Pro 3.5—ArcGIS Pro | Documentation for a preview of the pages of bug fixes and enhancements
... View more
Monday
|
2
|
0
|
166
|
POST
|
Then you are stuck with the version that arcpy supports. Hopefully there is nothing that you rely on in the newer scipy, otherwise you have to split your processing. The situation won't be changing in the near term since the 3.5 rollout still uses python 3.11 and numpy 1.26 and its time-placed relatives
... View more
Monday
|
0
|
0
|
31
|
POST
|
CAD To Geodatabase (Conversion)—ArcGIS Pro | Documentation this is the best tool. A lot goes on behind the scenes to get the data converted so make sure your cad data is clean and meets all the "if"s in the help document and that you are working with locally stored data.
... View more
Monday
|
0
|
0
|
67
|
POST
|
Does GetAllMessages reveal the hidden one? (see the code example and explanations) GetAllMessages—ArcGIS Pro | Documentation
... View more
Friday
|
0
|
0
|
184
|
POST
|
If your scripts don't require arcpy or anything from ArcToolbox, you can "create" your own environment and install whatever you want. I have one separate from the arcgispro-py3 environment running python 3.13, numpy 2.2, scipy 1.15.2 etc etc you can try, with sketchy success a conda install xyzxy --no-pin in a cloned environment, but sometimes the dependencies run too deep and can't be resolved, so a separate environment with no arc-anything may be necessary.
... View more
Friday
|
0
|
2
|
166
|
Title | Kudos | Posted |
---|---|---|
2 | Tuesday | |
3 | Tuesday | |
1 | Tuesday | |
2 | Monday | |
1 | 3 weeks ago |