|
POST
|
you floor me @BlakeTerhune 😁 actually I was trying to find out if "ceiling" ever existed when I discovered this Help is broken - Esri Community
... View more
05-16-2025
10:18 AM
|
1
|
0
|
1062
|
|
POST
|
Was there anything else that rolled down the screen during the install? I would be surprised if the conda-forge channel didn't want to updata a bunch of other packages. Something may have been updated/installed that Pro didn't like (specifically arcgis, arcgisscripting and their dependencies)
... View more
05-16-2025
10:15 AM
|
0
|
3
|
5617
|
|
POST
|
@RobertGarrity @JesseCloutier I can't use the offline help since I didn't install Pro 3.5 after Beta since my license runs out in 2 weeks anyway. I was surprised no one had flagged this yesterday 😉
... View more
05-16-2025
10:11 AM
|
1
|
0
|
2076
|
|
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
05-16-2025
03:20 AM
|
0
|
5
|
2167
|
|
POST
|
PolygonToRaster still exists Polygon to Raster (Conversion)—ArcGIS Pro | Documentation is there a reason you want to use FeatureToRaster?
... View more
05-14-2025
02:34 PM
|
0
|
1
|
1369
|
|
POST
|
There is no one-to-one conversion, there are limits Migrate existing work—ArcGIS Pro | Documentation
... View more
05-14-2025
02:23 AM
|
0
|
0
|
2337
|
|
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
05-13-2025
07:08 PM
|
5
|
0
|
5263
|
|
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
05-13-2025
05:45 PM
|
1
|
0
|
5284
|
|
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
05-13-2025
05:36 PM
|
5
|
0
|
678
|
|
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
05-13-2025
03:00 PM
|
0
|
2
|
2385
|
|
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
05-13-2025
01:17 PM
|
2
|
0
|
3093
|
|
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
05-13-2025
09:05 AM
|
0
|
1
|
2339
|
|
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
05-12-2025
02:49 PM
|
2
|
0
|
1409
|
|
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
05-12-2025
09:09 AM
|
0
|
0
|
1691
|
|
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
05-12-2025
02:58 AM
|
0
|
0
|
1434
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Thursday | |
| 1 | yesterday | |
| 1 | Wednesday | |
| 1 | a week ago | |
| 1 | a week ago |