|
POST
|
ArcGIS Pro 3.4.2: “The table was not found” error appears frequently without a clear reason, I’ve observed that Model Builder is frequently filled with errors when using version 3.4.2. The “The table was not found” error is just one example of the recurring issues that have become almost a daily struggle. What could be causing this? Could it be a bug?
... View more
04-10-2025
02:13 PM
|
0
|
8
|
3937
|
|
POST
|
ArcGIS Pro 3.4.2: Tools run in model builder end with “The table was not found” error, I can’t figure out why tools in model builder end with the error: “The table was not found.” However, re-running the tool that precedes it, and then rerunning the tool in question, allows it to work without any issue. What could be causing this? Is it a bug?
... View more
04-04-2025
11:13 AM
|
0
|
0
|
486
|
|
POST
|
ArcGIS Pro 3.4.2: How to “add field” when working with symbology for raster? For example, in the screenshot below, the “add field” option is not available when working with symbology for raster, whereas it is available when working with vector layers.
... View more
03-27-2025
11:29 PM
|
0
|
0
|
549
|
|
POST
|
Thank you Tom for the help. The hint you provided is very useful. I could resolve it with the help of ChatGPT, requesting the following: Write a Python code to read the data from the table below "C:\D\T1.xlsx" Then do the following Go to the second column with the name F2, for each record, divides its values (separated by space, semicolons, or whatever) into separate columns in separate columns, then, save the result in a new table in C:\D (Name it T2) For the T2, skip the first column, then keep the first two columns, delete the next two, keep the next two, then delete the next two… repeat this pattern for all columns in T2. Save the result in T3 Now, for each row in T3, stick the values of the first column and the second column in a new record, then again stick the values of the third and the fourth column in a new record, then again stick the values of the fifth and sixth column in a new record and so forth. Save it in T4 after that, I could plot T4 in ArcGIS Pro ---------- import pandas as pd import os # Define file paths input_file = r"C:\D\T1.xlsx" output_file_t2 = r"C:\D\T2.xlsx" output_file_t3 = r"C:\D\T3.xlsx" output_file_t4 = r"C:\D\T4.xlsx" # Read the Excel file df = pd.read_excel(input_file) # Check if 'F2' exists in the DataFrame if 'F2' not in df.columns: raise ValueError("Column 'F2' not found in the input file") # Split the values in 'F2' by common delimiters split_columns = df['F2'].astype(str).str.split(r'[; ,]+', expand=True) # Rename columns dynamically split_columns.columns = [f'F2_part{i+1}' for i in range(split_columns.shape[1])] # Combine with the original DataFrame (excluding the original 'F2' column) df_t2 = df.drop(columns=['F2']).join(split_columns) # Save the new table to an Excel file df_t2.to_excel(output_file_t2, index=False) print(f"File saved successfully at: {output_file_t2}") # Process T2 to create T3 # Skip the first column, then apply the keep-delete pattern columns_to_keep = [df_t2.columns[0]] # Keep the first column cols = df_t2.columns[1:] # Skip the first column for i in range(0, len(cols), 4): columns_to_keep.extend(cols[i:i+2]) # Keep two columns, skip two df_t3 = df_t2[columns_to_keep] # Save the result as T3.xlsx df_t3.to_excel(output_file_t3, index=False) print(f"File saved successfully at: {output_file_t3}") # Process T3 to create T4 (Expanding rows based on column groups) records = [] for _, row in df_t3.iterrows(): first_col_value = row.iloc[0] # First column value other_values = row.iloc[1:].values # Other column values for i in range(0, len(other_values) - 1, 2): if i + 1 < len(other_values): records.append([first_col_value, other_values[i], other_values[i + 1]]) # Convert to DataFrame df_t4 = pd.DataFrame(records, columns=[df_t3.columns[0], 'Value1', 'Value2']) # Save the result as T4.xlsx df_t4.to_excel(output_file_t4, index=False) print(f"File saved successfully at: {output_file_t4}") ---------
... View more
03-26-2025
04:11 AM
|
1
|
0
|
1708
|
|
POST
|
ArcGIS Pro 3.4.2: What is the best tool to map multiple XYZD points stored in a single cell within a record? For example, in the screenshot below, the geotrace field contains the XYZD values (latitude, longitude, altitude, and precision) of multiple points in one cell. How can these points be mapped? A sample dataset is attached in an Excel file.
... View more
03-25-2025
04:04 AM
|
0
|
2
|
1760
|
|
IDEA
|
I tried it in 3.4.2 and it works fine Why the Export is not on the right click? this is much more intuitive
... View more
03-11-2025
04:22 AM
|
0
|
0
|
531
|
|
IDEA
|
The issue persists to exist even in Pro 3.4.2 Even using the “validate” tool fails to bring the model tools to the new “scratch workspace”
... View more
03-02-2025
11:40 PM
|
0
|
0
|
1790
|
|
POST
|
The issue persists to exist even in Pro 3.4.2 Even using the “validate” tool fails to bring the model tools to the new “scratch workspace”
... View more
03-02-2025
11:39 PM
|
0
|
0
|
533
|
|
IDEA
|
I observed that this functionality if developed in Pro 3.4.2
... View more
02-27-2025
07:14 AM
|
0
|
0
|
550
|
|
POST
|
This is likely a bug in 3.4.2, as it works fine in previous versions such as 3.1.5.
... View more
02-26-2025
11:53 AM
|
0
|
0
|
1749
|
|
POST
|
Two things: This feature used to be available in previous versions of Pro. A screenshot is provided for Pro 3.1.5, where the dropdown menu selection is available. This is most likely a bug in Pro 3.4.2 Setting the “environment” at the model level is much more efficient than setting it for each individual tool.
... View more
02-26-2025
11:37 AM
|
2
|
0
|
1457
|
|
POST
|
Here I’m referring to the “environments” of the entire model but not that belong to a particular tool
... View more
02-26-2025
07:19 AM
|
0
|
0
|
1462
|
|
POST
|
ArcGIS Pro 3.4.2: The “mask” in the “environments” appears not to have a dropdown menu, I observed that the “mask” in the “environments” appears not to have a dropdown menu, despite the fact that there are already some layers added to the content. What could be the issue here? Is this a bug?
... View more
02-26-2025
03:03 AM
|
0
|
6
|
1485
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-30-2022 10:43 PM | |
| 2 | 05-05-2025 10:33 AM | |
| 1 | 05-08-2025 09:49 PM | |
| 1 | 05-06-2025 11:10 PM | |
| 1 | 02-20-2021 01:23 AM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|