Skip to main content
Question

could i get intersection between lines and points in oracle files ,spatial and not spatial

  • March 26, 2020
  • 4 replies
  • 43 views

gogopotter90
Contributor
Forum|alt.badge.img+14

could i get intersection between lines and points in oracle files

one of them is spatial and another oracl not spatial

just i do not want to load all oracle files in spatial and it will make the workspace slow so i was thinking to to import one spatial oracle file and another not .spatial .

is it possible to find intersection between both of them or should i load all oracle files only in spatial .Thanks

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

4 replies

erik_jan
Contributor
Forum|alt.badge.img+26
  • Contributor
  • March 26, 2020

Both points and lines need to be spatial (having a geometry) to be intersected, using the PointonLineOverlayer.

You could use the Non Spatial reader for points if they have a X and Y attribute and then use the VertexCreator transformer to create point geometries before loading them in the PointonLineOverlayer if the table is non spatial.

Hope this helps.


gogopotter90
Contributor
Forum|alt.badge.img+14
  • Author
  • Contributor
  • March 27, 2020

Both points and lines need to be spatial (having a geometry) to be intersected, using the PointonLineOverlayer.

You could use the Non Spatial reader for points if they have a X and Y attribute and then use the VertexCreator transformer to create point geometries before loading them in the PointonLineOverlayer if the table is non spatial.

Hope this helps.

thanks,when this point is a little bit far away of lines which tolerance suggest u to have ,or could i convert the point to area because i found in lineonareaoverlayer has tolerance automatic but pointonline does not have .

just i want to find the intersection lines with point but it is far away of this point,which suggestion suggests u and thanks


erik_jan
Contributor
Forum|alt.badge.img+26
  • Contributor
  • March 27, 2020

thanks,when this point is a little bit far away of lines which tolerance suggest u to have ,or could i convert the point to area because i found in lineonareaoverlayer has tolerance automatic but pointonline does not have .

just i want to find the intersection lines with point but it is far away of this point,which suggestion suggests u and thanks

I would try snapping the point to the line using the AnchoredSnapper (line as anchor), before the PointonLineOverlayer.


gogopotter90
Contributor
Forum|alt.badge.img+14
  • Author
  • Contributor
  • March 28, 2020

I would try snapping the point to the line using the AnchoredSnapper (line as anchor), before the PointonLineOverlayer.

Thanks alot it works great