|
IDEA
|
For multi-part lines, it would be helpful if there were a GP that could: Create a single midpoint for the entire feature. Place the point halfway along the entire length of the line (all parts considered). The Feature Vertices to Points GP tool doesn't seem to do this. It creates a point for each part. The Feature to Point GP tool (with the "Inside" option) doesn't seem to do it either. The point isn't placed halfway along the line. It seems to do something else, like possibly place the point in the middle of the feature envelope. Then snap the point to the line, to satisfy the "Inside" criteria. That's not the same as the line midpoint. Could a GP Tool be added that creates a true midpoint for multi-part lines? Thanks.
... View more
07-29-2022
08:34 AM
|
0
|
5
|
2540
|
|
POST
|
Actually, on closer inspection, I don't think it placed the point halfway along the line. Maybe it did something else, like place the point in the middle of the envelope. Then snap the point to the line, to satisfy the "Inside" criteria.
... View more
07-29-2022
08:23 AM
|
0
|
0
|
3320
|
|
POST
|
@DanLee As you suggested, Feature To Point with the "Inside" option worked well thanks. It seems to have placed the midpoint along the entire length of the line (all parts considered), which is what I wanted. It didn't just use the midpoint of a single part...such as the the first part it found (good). (The line in the screenshot is composed of multiple parts. That's incorrect/unnecessary, but beyond my control.) Thanks for the tip about that GP tool.
... View more
07-29-2022
08:17 AM
|
0
|
1
|
3320
|
|
IDEA
|
In the Attribute Table in Pro: It would be helpful if we could group rows by a common ID into an expanding tree. Similar to what we can do in the Access / Excel / SQL clients: That would make exploring data easier. If that's not possible, then an alternative might be to visually separate rows with a border, or something similar: I'm aware of the conditional formatting idea. But I think this is different...I don't think this would be considered conditional formatting. Thanks.
... View more
07-29-2022
06:34 AM
|
0
|
1
|
721
|
|
POST
|
In my experience, SQL is often a gap in ArcGIS Pro users' skillsets. It seems to me that a course on SQL in ArcGIS Pro would be beneficial. Could Esri consider offering such a course? Or some other kind of resource? Some lesser-known SQL topics could include: Using correlated subqueries in select by attributes, definition queries, Append GP tool expression, etc. Example: One-to-first joins: Control what related record is used Using ST_GEOMETRY functions in select by attributes and definition queries Use the Diagnostic Monitor to view SQL queries sent from Pro to the database SQL in Arcade Querying GIS data in SQL clients like SQL Developer Using geodatabase system tables in SQL queries Working with data from on-prem external databases using SQL, in conjunction with GIS data, via database links, etc. Database views and query layers SQL comments in select by attributes and definition queries Generating sample data with SQL in a query layer or view: Generate grid line features using SQL Convert grid lines to polygons Generate a EGDB database view that has a spatial SQL query in it using the Select Layer by Location GP tool’s "Intersect (DBMS)" option.
... View more
07-26-2022
12:13 PM
|
6
|
1
|
1780
|
|
IDEA
|
For what it's worth: In SQL clients like SQL Developer, we can change what text & background color is used to display nulls. For example, we can display nulls as blanks and change the background color to light grey. So I wonder if something like that could be an option in Pro. Also, this is how DB<>FIDDLE does it: https://dbfiddle.uk/?rdbms=oracle_18&fiddle=be89134354ae358a516147ef1ddbbf7f As you suggested, it's more subtle. But at the same time, it's also more differentiable, due to the different text color. It seems like a reasonable approach.
... View more
07-25-2022
12:52 PM
|
0
|
0
|
1266
|
|
IDEA
|
@wayfaringrob Thanks, although I don't really understand how that helps me visualize what a popup would look like in Pro.
... View more
07-25-2022
12:40 PM
|
0
|
0
|
2557
|
|
IDEA
|
@Bud 2.6 was the release that validation was added for feature classes. 2.8 for standalone tables. If you are working with a feature class, perhaps you didn't attempt to commit the edit yet by hitting enter or navigating away from the active record? It's weird, I don't get the warning message in the Attribute Table in 2.6.8, not even when working in a feature class (and saving/committing the record). I tried with the FC versioned (with base) and non-versioned. No difference. I could show you in a WebEx session in a meeting, if that would save you some time. Feel free to DM me. Eastern time.
... View more
07-22-2022
11:15 AM
|
0
|
0
|
2208
|
|
IDEA
|
Pro 2.6.8; non-spatial table; Oracle 18c EGDB: In the attribute table: If I delete a row by right-clicking the row —> Delete Row, then the scroll bar in the Attribute Table navigates away from my position in the table: It's quite aggravating when that happens; I lose my place where I was working in the attribute table. And that isn't how ArcMap works. Could that behavior be changed so that the user's position in the Attribute Table is preserved when deleting a row? Thanks.
... View more
07-22-2022
10:56 AM
|
1
|
1
|
694
|
|
IDEA
|
@Scott_Harris Thanks. The Attributes Pane will show a warning We don't really use the Attributes Pane very often, only the Attribute Window. So I didn't notice that warning message. And prevent the edit if Enforce Validation is checked on in Editing settings. I checked and that setting is enabled. If you are editing in the Attributes Table it also pops up a similar warning once you attempt to move to the next record (to commit the edit). I'm not seeing that behavior in a non-spatial table in Pro 2.6.8 (Oracle 18c EGDB). Do you know if it was added in a subsequent release of Pro?
... View more
07-22-2022
10:45 AM
|
0
|
0
|
2217
|
|
IDEA
|
Could someone provide a screenshot of "the ability to pop out a larger experience similar to the Online editor"? I don't really use ArcGIS Online, so I don't think I know what that looks like.
... View more
07-21-2022
08:58 AM
|
0
|
0
|
2576
|
|
IDEA
|
For what it's worth, I noticed just now that SQL Developer has a tool for entering Spatial Metadata for a given table: That could be useful.
... View more
07-20-2022
12:57 PM
|
0
|
0
|
1213
|
|
POST
|
@JakeSkinner FYI - I noticed just now that SQL Developer has a tool for entering Spatial Metadata for a given table: That could be handy.
... View more
07-20-2022
12:52 PM
|
1
|
0
|
2498
|
|
IDEA
|
When creating a database view in an Oracle EGDB using the Create Database View GP tool: I can successfully create a view if there isn't a comment at the beginning of the SQL query: select 1 as unique_id from dual --a comment But I can't create a view if there is a comment at the beginning of the SQL query, like this: --a comment select 1 as unique_id from dual When I move the cursor out of the View Definition textbox, then the SQL is automatically changed to be single-line: --a comment select 1 as unique_id from dual Which makes the SQL invalid (Oracle probably thinks the SQL is one big comment). ERROR 999999: Something unexpected caused the tool to fail. Contact Esri Technical Support (http://esriurl.com/support) to Report a Bug, and refer to the error help for potential solutions or workarounds. [ORA-00928: missing SELECT keyword] DBMS table not found [ORA-04043: object A_TEST_VW does not exist] [a_test_vw] Failed to execute (CreateDatabaseView). Could Pro be enhanced so that we can put SQL comments at the beginning of database views? Or put differently, could Pro be enhanced so that it doesn't automatically convert the SQL to be a single line (don't remove line breaks).
... View more
07-20-2022
12:22 PM
|
0
|
0
|
657
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-20-2026 02:12 PM | |
| 1 | 03-19-2026 11:42 AM | |
| 1 | 06-03-2026 04:02 AM | |
| 1 | 03-18-2026 07:08 PM | |
| 2 | 3 weeks ago |