DOC
|
Version 2020-05-17 Originally on code sharing. ArcGIS Pro 2.5. Numpy and Arcpy play nice. Some tools replicate the functionality normally requiring an Advanced license (for some reason ) Give it whirl. Any functionality you need, give my new incarnation a buzz. https://community.esri.com/people/danretired/blog/2020/05/18/free-tools-for-arcgis-pro-table-tools for some examples The tool list.
... View more
05-17-2020
05:10 PM
|
6
|
0
|
4895
|
POST
|
Lidia Dudina .... ArcGIS API for Python might be a better place. You should Share or Move it there.
... View more
05-17-2020
04:23 PM
|
1
|
1
|
1773
|
POST
|
I would recommend making it a geodatabase table for file that size, using either of the recommended options in the Table To dBASE—Conversion toolbox | Documentation The Copy Rows and Table To Table tools can also be used to convert a table to a dBASE file gdb tables will function better than trying to work with a dbf.
... View more
05-17-2020
03:06 AM
|
1
|
0
|
1005
|
POST
|
You can check the Data Interoperability extension Supported formats with the Data Interoperability extension—ArcGIS Pro | Documentation Supported data types and items—ArcGIS Pro | Documentation Coverage Note: Coverages are not supported in ArcGIS Pro. Feature Class To Coverage Import Coverage Annotation Import From E00
... View more
05-15-2020
07:43 PM
|
0
|
0
|
617
|
POST
|
From What is the best way to remove accents in a Python unicode string? - Stack Overflow oefe's response z = "áéíóúñ#/" # ---- an example
import unicodedata
def strip_accents(s):
return ''.join(c for c in unicodedata.normalize('NFD', s)
if unicodedata.category(c) != 'Mn')
strip_accents(z) # ---- example output
'aeioun#/'
... View more
05-15-2020
06:11 PM
|
2
|
0
|
2377
|
POST
|
reportedly 'fixed' but you seem to have a higher server version than indicated in these posts. Try the salient lines in the python window in Pro or in a Jupyter Notebook in Pro to rule out a VS code issue BUG-000114121: ArcGIS GIS Server 10.5x and ArcGIS GIS Server 10.6 p.. https://community.esri.com/thread/231916-arcgis-server-attributeerror-module-arcpy-has-no-attribute-importcredentials
... View more
05-15-2020
04:16 PM
|
0
|
1
|
836
|
POST
|
Yes, it is convoluted https://community.esri.com/community/my-esri/blog/2018/08/16/why-can-t-i-submit-cases-or-how-i-became-an-authorized-caller-and-reported-my-issue Esri Technical Support is a good place to posts or Share these types of questions.
... View more
05-15-2020
04:03 PM
|
1
|
0
|
2528
|
DOC
|
https://community.esri.com/people/danretired/blog/2020/05/15/point-tools-for-pro for discussion.
... View more
05-15-2020
03:47 PM
|
1
|
1
|
1520
|
POST
|
EucDistance(in_source_data, {maximum_distance}, {cell_size}, {out_direction_raster},
{distance_method}, {in_barrier_data}, {out_back_direction_raster}) Since cell_size is the 3rd parameter, you should use named parameters rather than relying on position. outEucDist = EucDistance(in_source_data, cell_size=cell_size, distance_method=distance_method) or better utEucDist = EucDistance(in_source_data, cell_size=100, distance_method="PLANAR") Just because you have your variables named the same, doesn't translate to the positional requirement for maximum_distance not being specified.
... View more
05-15-2020
02:14 PM
|
1
|
1
|
1238
|
POST
|
If you are using Pro https://community.esri.com/people/danretired/blog/2020/05/15/point-tools-for-pro there is a point creation tool the ensures a minimum point spacing
... View more
05-15-2020
02:07 PM
|
1
|
1
|
2012
|
POST
|
You would be advised to report this to Tech Support to ensure that this geets looked at.
... View more
05-15-2020
02:03 PM
|
1
|
2
|
2528
|
POST
|
Utility Network reference for editing—ArcGIS Pro | Documentation Snapping When you add or move a network feature, snap settings automatically change to settings that conform to junction and edge connectivity rules. You can turn snapping off, but you cannot change the layers or features to which you are snapping.
... View more
05-15-2020
02:00 PM
|
5
|
1
|
913
|
POST
|
that leaves BUG-000129208: In ArcGIS Pro 2.5, the Copy Raster tool does not rec.. plus 8 more from 2015 to 2018 I suspect being recognized as a text file is the symptom of the issue since you can do the drag thing
... View more
05-15-2020
03:17 AM
|
0
|
1
|
1129
|
POST
|
Further information can be found on the Tech Support page BUG-000115603: When trying to remove a subtype from a feature class..
... View more
05-15-2020
02:43 AM
|
5
|
0
|
750
|
POST
|
If the points are sequential along the route, perhaps just calculate the cumulative distance and the Z value into 2 fields and produce an X-Y graph. Use Python parser required. For calculating the Z value into a field (type Double) use... !Shape!.centroid.Z and for the cumulative distance Expression dist_cum(!Shape!) Code block """-----------------------------------------
dist_cumu(shape)
input: shape field
returns: cumulative distance between points
expression: dist_cumu(!Shape!)
"""
x0 = 0.0
y0 = 0.0
distance = 0.0
def dist_cumu(shape):
global x0
global y0
global distance
x = shape.firstpoint.X
y = shape.firstpoint.Y
if x0 == 0.0 and y0 == 0.0:
x0 = x
y0 = y
distance += math.sqrt((x - x0)**2 + (y - y0)**2)
x0 = x
y0 = y
return distance Then you can use the two field for graphing inside or outside (Table to Excel tool, for instance)
... View more
05-14-2020
09:05 PM
|
0
|
0
|
1103
|
Title | Kudos | Posted |
---|---|---|
1 | Friday | |
1 | Friday | |
1 | Wednesday | |
1 | Wednesday | |
1 | a week ago |
Online Status |
Offline
|
Date Last Visited |
yesterday
|