|
POST
|
Don't know exactly but if you work on a microsoft machine maybe check the regional system settings for decimal separator? It could be that it's not a point?
... View more
10-24-2023
12:50 AM
|
0
|
1
|
2823
|
|
POST
|
What about select by location tool? https://pro.arcgis.com/en/pro-app/latest/help/mapping/navigation/select-features-by-location.htm
... View more
10-23-2023
12:45 AM
|
0
|
1
|
1822
|
|
POST
|
Thank you for your reply. Rainfall depth is difficult to calculate? In my case it's rather a visualisation question than one of correct runoff modelling ...
... View more
08-21-2023
01:43 AM
|
0
|
0
|
1220
|
|
POST
|
Hello, is it possible to create some kind of water surface runoff simulation in arcgis pro 3.0.2 with a combined raster including the attributes of flow accumulation (as magnitude/speed) and flow direction (as direction)? Any ideas on how this could be done? With arrows or flow renderer if possible?
... View more
08-14-2023
11:14 PM
|
1
|
2
|
1823
|
|
POST
|
Hello, in ArcGIS Pro 3.0.2 Image Analyst - detect-objects-using-deep-learning tool I get the error 003569 by using the esri trained model "Land Cover Classification (Aerial Imagery)" on a 3 band aerial image with a resolution of 20 cm. https://www.arcgis.com/home/item.html?id=c1bca075efb145d9a26394b866cd05eb Deep learning libraries are installed in the right directory as far as I can see? ExecuteError: Fehler bei Ausführung. Parameter sind ungültig. ERROR 003569: Ungültiger Deep-Learning-Modelltyp. Modelltyp NULL, ObjectDetection, InstanceDetection, or PanopticSegmenter erwartet. Fehler beim Ausführen von (DetectObjectsUsingDeepLearning). I get this error message by drag and drop the dlpk in the toolbox tool? Any ideas what this error message means?
... View more
06-21-2023
09:54 PM
|
0
|
2
|
2229
|
|
POST
|
Would it be an idea to replace first the Null values with a real "0" and then do the calculations? https://support.esri.com/en/technical-article/000023190
... View more
03-30-2023
06:58 AM
|
0
|
0
|
1539
|
|
POST
|
Hello, I would buffer the roads with a very small distance or the distance you think is appropriate for the roads and then use the pairwise erase tool? Or try this tool: https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/feature-to-polygon.htm
... View more
02-20-2023
03:43 AM
|
0
|
0
|
1310
|
|
POST
|
Didn't knowed this tool, if I run it with one empty field I want to delete I get something like this: Sorry it's in german ... I think the problem with this tool will be that it's some kind of chaotic data merge out of excel files in the fc. The fields to delete could contain Null values, "", "0", " " ... .
... View more
02-03-2023
01:46 AM
|
1
|
0
|
1659
|
|
POST
|
Hello, I want to delete all empty fields in a feature class (arcgis pro 3.0 - notebooks) - with no sucess. The following script doesn't work, it prints fields as count = 0 which have valid attributes. Any better ideas? fc = "Merge_1"
fields = [f.name for f in arcpy.ListFields(fc) if not f.required]
for field in fields:
count = 0
with arcpy.da.SearchCursor(fc, field) as cursor:
for row in cursor:
if row[0] is None or row[0] in ["", " ", "0"]:
count += 0
else:
count += 1
break
print(field, count)
... View more
02-02-2023
09:37 PM
|
0
|
4
|
1708
|
|
POST
|
Hello, I want to check if a field type is text to change this field to type double so that I can use it as input field into XYTableToPoint? This if statement in line 16 doesn't work (arcgis pro 3.0 notebook) Any ideas? Error message for line 41: ERROR 000308: Ungültiger Feldtyp for f in files_list:
print (f)
outTable = "tab_" + os.path.splitext(os.path.basename(f.replace("-", "_")))[0]
outXY = "s_" + os.path.splitext(os.path.basename(f.replace("-", "_")))[0]
arcpy.conversion.ExcelToTable(f, outTable)
x = "R_Wert"
y = "H_Wert"
fields = arcpy.ListFields(outTable)
field_names = []
for field in fields:
field_names.append(field.name)
if field.name == x and field.type == "TEXT":
print("Wrong type")
arcpy.management.AddField(outTable, "R_Wert_1", "DOUBLE")
arcpy.management.CalculateField(outTable, "R_Wert_1",
'!R_Wert!', "PYTHON3")
x = "R_Wert_1"
elif field.name == y and field.type == "TEXT":
print("Wrong Type")
arcpy.management.AddField(outTable, "HWert_1", "DOUBLE")
arcpy.management.CalculateField(outTable, "R_Wert_1",
'!H_Wert!', "PYTHON3")
y = "H_Wert_1"
else:
continue
if x in field_names and y in field_names:
print("Field names ok")
arcpy.management.XYTableToPoint(outTable, outXY,
x, y, "",
arcpy.SpatialReference("DHDN 3-Degree Gauss Zone 3"))# ('ETRS 1989 UTM Zone 32N'))
else:
print("Field names wrong")
continue
... View more
02-01-2023
11:39 PM
|
0
|
2
|
767
|
|
POST
|
Could it be a problem that the kml name starts with a number or the spaces in your pathnames? https://community.esri.com/t5/data-management-blog/how-to-name-things-in-arcgis/ba-p/897194
... View more
01-26-2023
11:37 PM
|
0
|
0
|
1234
|
|
POST
|
Think it's possible: https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/basics/the-in-memory-workspace.htm
... View more
01-25-2023
06:26 AM
|
2
|
0
|
2173
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-10-2025 08:08 AM | |
| 1 | 05-13-2025 05:05 AM | |
| 1 | 04-28-2025 03:40 AM | |
| 4 | 08-13-2024 10:49 PM | |
| 1 | 08-13-2024 09:52 PM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|