|
POST
|
ArcGIS Pro 3.4.2: Exporting a layout containing imagery as PDF results in missing imagery, In the screenshot below, I exported a layout containing imagery as a PDF. The PDF was successfully generated; however, the imagery is missing from the output. What could be causing this issue? The imagery is attached
... View more
05-03-2025
06:47 AM
|
1
|
12
|
1369
|
|
POST
|
In the screenshot below, using “Classify” as the primary symbology works fine. In which cases does it work, and in which does it not?
... View more
04-25-2025
05:29 AM
|
0
|
0
|
341
|
|
POST
|
ArcGIS Pro 3.4.2: Selecting “Classify” as the primary symbology causes the raster to disappear, I couldn’t figure out why this happens, especially since the raster displays correctly when using “Stretch,” “Discrete,” or “Unique Values” as the symbology. What could be the issue here?
... View more
04-22-2025
01:53 AM
|
0
|
3
|
433
|
|
POST
|
It’s great that we can switch from one text type to another
... View more
04-20-2025
10:21 AM
|
0
|
0
|
1133
|
|
POST
|
ArcGIS Pro 3.4.2: Why doesn’t the font size value in the ribbon change when the legend is resized? For example, in the screenshot below, the initial font size of the text within the legend was set to 10 pt. After resizing the legend, the displayed text size physically increased, but the numerical font size in the ribbon remained unchanged. How can the ribbon reflect dynamic changes in font size, such that resizing the legend also updates the displayed font size value accordingly?
... View more
04-18-2025
11:18 PM
|
0
|
2
|
538
|
|
POST
|
Why should this be an issue? And why does it work sometimes but fail at other times?
... View more
04-11-2025
04:09 AM
|
0
|
0
|
1742
|
|
POST
|
Thank you for the input. The name of the output is generated automatically, and I don’t change it. I don’t modify the raster’s extension; it is created automatically. I’ve observed that the issue occurs even when the file path is short. Drive H is a local drive. Two observations: This issue did not exist during the ArcMap era. Sometimes, the issue disappears without making any changes at all!
... View more
04-10-2025
11:00 PM
|
0
|
0
|
1764
|
|
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
|
1819
|
|
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
|
217
|
|
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
|
251
|
|
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
|
674
|
|
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
|
726
|
|
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
|
212
|
|
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
|
656
|
| 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 |
Sunday
|