Constructing query to return values from all polygons that line passes through using SpatiaLite? [closed]Seek assistance with: SQL Server 2008 Query that takes values from a column in another table (or from a flat file)How to combine Spatialite DatabasesHow to create a spatial view when allowing multiple selection in qgis’s edit widget “value relation”?problem merging polygons based on a column value - using SpatialiteExplicitly close a OGR result object from a call to ExecuteSQLFind start of riverDump a GeoJSON FeatureCollection from Spatialite query with PythonUsing nearest neighbor query in SpatiaLite?Update query adding values from multi column case statement in QGISQuerying geometry in perimeter or square with SpatiaLite?

What is the effect of the Feeblemind spell on Ability Score Improvements?

Wiring a 4 channel relay - is this possible?

Polynomial division: Is this trick obvious?

How to continually let my readers know what time it is in my story, in an organic way?

When did game consoles begin including FPUs?

Capital gains on stocks sold to take initial investment off the table

tikz drawing rectangle discretized with triangle lattices and its centroids

What do you call the hair or body hair you trim off your body?

Why did the metro bus stop at each railway crossing, despite no warning indicating a train was coming?

2 parabolas through 4 points

How to rename multiple files in a directory at the same time

Single word that parallels "Recent" when discussing the near future

Will the volt, ampere, ohm or other electrical units change on May 20th, 2019?

Were any of the books mentioned in this scene from the movie Hackers real?

Why did Varys remove his rings?

Developers demotivated due to working on same project for more than 2 years

Is my test coverage up to snuff?

God-Pharaoh's Statue and Finale Of Promise

Who commanded or executed this action in Game of Thrones S8E5?

Formal Definition of Dot Product

Which creature is depicted in this Xanathar's Guide illustration of a war mage?

Is the seat-belt sign activation when a pilot goes to the lavatory standard procedure?

How will the lack of ground stations affect navigation?

Why did the UK remove the 'European Union' from its passport?



Constructing query to return values from all polygons that line passes through using SpatiaLite? [closed]


Seek assistance with: SQL Server 2008 Query that takes values from a column in another table (or from a flat file)How to combine Spatialite DatabasesHow to create a spatial view when allowing multiple selection in qgis’s edit widget “value relation”?problem merging polygons based on a column value - using SpatialiteExplicitly close a OGR result object from a call to ExecuteSQLFind start of riverDump a GeoJSON FeatureCollection from Spatialite query with PythonUsing nearest neighbor query in SpatiaLite?Update query adding values from multi column case statement in QGISQuerying geometry in perimeter or square with SpatiaLite?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I want an SQL query in Spatialite to return a list of values (Primary Key in this case, but could be any value) from all the polygons which are crossed by a line. Say, for example, a footpath passes through several fields and I want a table of the field numbers of all the fields the footpath passes through.



I've tried playing around with st_crosses, but that only returns a single result.










share|improve this question















closed as off-topic by Jochen Schwarze, PolyGeo May 4 at 20:56


This question appears to be off-topic. The users who voted to close gave this specific reason:


  • "When seeking help to debug/write/improve code always provide the desired behavior, a specific problem/error and the shortest code (as formatted text, not pictures) needed to reproduce it in the question body. Providing a clear problem statement and a code attempt helps others to help you." – Jochen Schwarze, PolyGeo
If this question can be reworded to fit the rules in the help center, please edit the question.






















    0















    I want an SQL query in Spatialite to return a list of values (Primary Key in this case, but could be any value) from all the polygons which are crossed by a line. Say, for example, a footpath passes through several fields and I want a table of the field numbers of all the fields the footpath passes through.



    I've tried playing around with st_crosses, but that only returns a single result.










    share|improve this question















    closed as off-topic by Jochen Schwarze, PolyGeo May 4 at 20:56


    This question appears to be off-topic. The users who voted to close gave this specific reason:


    • "When seeking help to debug/write/improve code always provide the desired behavior, a specific problem/error and the shortest code (as formatted text, not pictures) needed to reproduce it in the question body. Providing a clear problem statement and a code attempt helps others to help you." – Jochen Schwarze, PolyGeo
    If this question can be reworded to fit the rules in the help center, please edit the question.


















      0












      0








      0








      I want an SQL query in Spatialite to return a list of values (Primary Key in this case, but could be any value) from all the polygons which are crossed by a line. Say, for example, a footpath passes through several fields and I want a table of the field numbers of all the fields the footpath passes through.



      I've tried playing around with st_crosses, but that only returns a single result.










      share|improve this question
















      I want an SQL query in Spatialite to return a list of values (Primary Key in this case, but could be any value) from all the polygons which are crossed by a line. Say, for example, a footpath passes through several fields and I want a table of the field numbers of all the fields the footpath passes through.



      I've tried playing around with st_crosses, but that only returns a single result.







      spatialite query spatial-query






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 4 at 20:56









      PolyGeo

      54.3k1782251




      54.3k1782251










      asked May 4 at 7:35









      IsaacsonIsaacson

      496313




      496313




      closed as off-topic by Jochen Schwarze, PolyGeo May 4 at 20:56


      This question appears to be off-topic. The users who voted to close gave this specific reason:


      • "When seeking help to debug/write/improve code always provide the desired behavior, a specific problem/error and the shortest code (as formatted text, not pictures) needed to reproduce it in the question body. Providing a clear problem statement and a code attempt helps others to help you." – Jochen Schwarze, PolyGeo
      If this question can be reworded to fit the rules in the help center, please edit the question.







      closed as off-topic by Jochen Schwarze, PolyGeo May 4 at 20:56


      This question appears to be off-topic. The users who voted to close gave this specific reason:


      • "When seeking help to debug/write/improve code always provide the desired behavior, a specific problem/error and the shortest code (as formatted text, not pictures) needed to reproduce it in the question body. Providing a clear problem statement and a code attempt helps others to help you." – Jochen Schwarze, PolyGeo
      If this question can be reworded to fit the rules in the help center, please edit the question.




















          1 Answer
          1






          active

          oldest

          votes


















          4














          Try ST_INTERSECTS:



          select polygons.*
          from polygons, lines
          where st_intersects(polygons.geometry, lines.geometry)





          share|improve this answer































            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            4














            Try ST_INTERSECTS:



            select polygons.*
            from polygons, lines
            where st_intersects(polygons.geometry, lines.geometry)





            share|improve this answer





























              4














              Try ST_INTERSECTS:



              select polygons.*
              from polygons, lines
              where st_intersects(polygons.geometry, lines.geometry)





              share|improve this answer



























                4












                4








                4







                Try ST_INTERSECTS:



                select polygons.*
                from polygons, lines
                where st_intersects(polygons.geometry, lines.geometry)





                share|improve this answer















                Try ST_INTERSECTS:



                select polygons.*
                from polygons, lines
                where st_intersects(polygons.geometry, lines.geometry)






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited May 6 at 6:08

























                answered May 4 at 7:50









                BERABERA

                18.3k62145




                18.3k62145













                    Popular posts from this blog

                    RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

                    How to write a 12-bar blues melodyI-IV-V blues progressionHow to play the bridges in a standard blues progressionHow does Gdim7 fit in C# minor?question on a certain chord progressionMusicology of Melody12 bar blues, spread rhythm: alternative to 6th chord to avoid finger stretchChord progressions/ Root key/ MelodiesHow to put chords (POP-EDM) under a given lead vocal melody (starting from a good knowledge in music theory)Are there “rules” for improvising with the minor pentatonic scale over 12-bar shuffle?Confusion about blues scale and chords

                    Esgonzo ibérico Índice Descrición Distribución Hábitat Ameazas Notas Véxase tamén "Acerca dos nomes dos anfibios e réptiles galegos""Chalcides bedriagai"Chalcides bedriagai en Carrascal, L. M. Salvador, A. (Eds). Enciclopedia virtual de los vertebrados españoles. Museo Nacional de Ciencias Naturales, Madrid. España.Fotos