Point to polygon walking distanceMap walking distance/time from transit stopsQGIS spatial join, calculating distance from polygon to point layerdistance to polygon boundaryDistance between centroid and farthest point of polygonNNJoin returns incorrect distancesEstimating a location at the minimum distance between a point and a polygonCalculating minimal distance between point and polygons for multiple categories in QGISPostGIS: calculate minimum distance between feature typesWalking distance with pgrouting for several locationsFinding nearest distance between point and polygon layers in QGIS

When writing an error prompt, should we end the sentence with a exclamation mark or a dot?

Print the string equivalents of a phone number

How to pass a regex when finding a directory path in bash?

When conversion from Integer to Single may lose precision

How do photons get into the eyes?

Do the English have an ancient (obsolete) verb for the action of the book opening?

Why only the fundamental frequency component is said to give useful power?

Select items in a list that contain criteria #2

Phone number to a lounge, or lounges generally

Do any instruments not produce overtones?

Trapping Rain Water

Is it recommended against to open-source the code of a webapp?

Translating 'Liber'

Can you really not move between grapples/shoves?

siunitx error: Invalid numerical input

Deformation of rectangular plot

Java guess the number

Are "living" organ banks practical?

Movie about a boy who was born old and grew young

erasing a part of a plot

Is any name of Vishnu Siva?

Does there exist a word to express a male who behaves as a female?

Payment instructions from HomeAway look fishy to me

Does the "6 seconds per round" rule apply to speaking/roleplaying during combat situations?



Point to polygon walking distance


Map walking distance/time from transit stopsQGIS spatial join, calculating distance from polygon to point layerdistance to polygon boundaryDistance between centroid and farthest point of polygonNNJoin returns incorrect distancesEstimating a location at the minimum distance between a point and a polygonCalculating minimal distance between point and polygons for multiple categories in QGISPostGIS: calculate minimum distance between feature typesWalking distance with pgrouting for several locationsFinding nearest distance between point and polygon layers in QGIS






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








3















I do a research on urban park accessibility. I am working with QGIS 3.4 and ORS-Tools for the distance calculation by foot. A use of ArcGIS is possible.



I use a point layer with geocoded apartements and a few polygon layers representing the parks.



I would like to calculate the walking distance with OpenRouteService (ORS-Tool) to the edge of the nearest park polygon. My latest research results concerning distance point to polygon have always led to the use oft the NNJOIN-Tool, which only calculates the euclidean distance to the nearest polygon.



My first attempt was to calculate the distance between the polygon centroids, representing the park and the apartments. After that I did a query (statistics by category) to filter the shortest distance. But for my research goal I need the distance to the egde of the closest polygon.










share|improve this question






























    3















    I do a research on urban park accessibility. I am working with QGIS 3.4 and ORS-Tools for the distance calculation by foot. A use of ArcGIS is possible.



    I use a point layer with geocoded apartements and a few polygon layers representing the parks.



    I would like to calculate the walking distance with OpenRouteService (ORS-Tool) to the edge of the nearest park polygon. My latest research results concerning distance point to polygon have always led to the use oft the NNJOIN-Tool, which only calculates the euclidean distance to the nearest polygon.



    My first attempt was to calculate the distance between the polygon centroids, representing the park and the apartments. After that I did a query (statistics by category) to filter the shortest distance. But for my research goal I need the distance to the egde of the closest polygon.










    share|improve this question


























      3












      3








      3








      I do a research on urban park accessibility. I am working with QGIS 3.4 and ORS-Tools for the distance calculation by foot. A use of ArcGIS is possible.



      I use a point layer with geocoded apartements and a few polygon layers representing the parks.



      I would like to calculate the walking distance with OpenRouteService (ORS-Tool) to the edge of the nearest park polygon. My latest research results concerning distance point to polygon have always led to the use oft the NNJOIN-Tool, which only calculates the euclidean distance to the nearest polygon.



      My first attempt was to calculate the distance between the polygon centroids, representing the park and the apartments. After that I did a query (statistics by category) to filter the shortest distance. But for my research goal I need the distance to the egde of the closest polygon.










      share|improve this question
















      I do a research on urban park accessibility. I am working with QGIS 3.4 and ORS-Tools for the distance calculation by foot. A use of ArcGIS is possible.



      I use a point layer with geocoded apartements and a few polygon layers representing the parks.



      I would like to calculate the walking distance with OpenRouteService (ORS-Tool) to the edge of the nearest park polygon. My latest research results concerning distance point to polygon have always led to the use oft the NNJOIN-Tool, which only calculates the euclidean distance to the nearest polygon.



      My first attempt was to calculate the distance between the polygon centroids, representing the park and the apartments. After that I did a query (statistics by category) to filter the shortest distance. But for my research goal I need the distance to the egde of the closest polygon.







      qgis accessibility






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 20 at 17:05









      TomazicM

      2,2391819




      2,2391819










      asked May 20 at 16:52









      WaltherWalther

      435




      435




















          1 Answer
          1






          active

          oldest

          votes


















          3














          Convert your polygon boundaries to points. Calculate the distance from each apartment to the nearest point



          1. Use the Densify tool to add more vertices along the edges of your polygons.

          2. Use the Extract Vertices tool to extract the vertices to a point layer.

          3. Run your distance calculations using the vertex layer instead of the park polygons.





          share|improve this answer























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "79"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f323358%2fpoint-to-polygon-walking-distance%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3














            Convert your polygon boundaries to points. Calculate the distance from each apartment to the nearest point



            1. Use the Densify tool to add more vertices along the edges of your polygons.

            2. Use the Extract Vertices tool to extract the vertices to a point layer.

            3. Run your distance calculations using the vertex layer instead of the park polygons.





            share|improve this answer



























              3














              Convert your polygon boundaries to points. Calculate the distance from each apartment to the nearest point



              1. Use the Densify tool to add more vertices along the edges of your polygons.

              2. Use the Extract Vertices tool to extract the vertices to a point layer.

              3. Run your distance calculations using the vertex layer instead of the park polygons.





              share|improve this answer

























                3












                3








                3







                Convert your polygon boundaries to points. Calculate the distance from each apartment to the nearest point



                1. Use the Densify tool to add more vertices along the edges of your polygons.

                2. Use the Extract Vertices tool to extract the vertices to a point layer.

                3. Run your distance calculations using the vertex layer instead of the park polygons.





                share|improve this answer













                Convert your polygon boundaries to points. Calculate the distance from each apartment to the nearest point



                1. Use the Densify tool to add more vertices along the edges of your polygons.

                2. Use the Extract Vertices tool to extract the vertices to a point layer.

                3. Run your distance calculations using the vertex layer instead of the park polygons.






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered May 20 at 17:42









                cskcsk

                11.5k1337




                11.5k1337



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f323358%2fpoint-to-polygon-walking-distance%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Wikipedia:Vital articles Мазмуну Biography - Өмүр баян Philosophy and psychology - Философия жана психология Religion - Дин Social sciences - Коомдук илимдер Language and literature - Тил жана адабият Science - Илим Technology - Технология Arts and recreation - Искусство жана эс алуу History and geography - Тарых жана география Навигация менюсу

                    Bruxelas-Capital Índice Historia | Composición | Situación lingüística | Clima | Cidades irmandadas | Notas | Véxase tamén | Menú de navegacióneO uso das linguas en Bruxelas e a situación do neerlandés"Rexión de Bruxelas Capital"o orixinalSitio da rexiónPáxina de Bruselas no sitio da Oficina de Promoción Turística de Valonia e BruxelasMapa Interactivo da Rexión de Bruxelas-CapitaleeWorldCat332144929079854441105155190212ID28008674080552-90000 0001 0666 3698n94104302ID540940339365017018237

                    What should I write in an apology letter, since I have decided not to join a company after accepting an offer letterShould I keep looking after accepting a job offer?What should I do when I've been verbally told I would get an offer letter, but still haven't gotten one after 4 weeks?Do I accept an offer from a company that I am not likely to join?New job hasn't confirmed starting date and I want to give current employer as much notice as possibleHow should I address my manager in my resignation letter?HR delayed background verification, now jobless as resignedNo email communication after accepting a formal written offer. How should I phrase the call?What should I do if after receiving a verbal offer letter I am informed that my written job offer is put on hold due to some internal issues?Should I inform the current employer that I am about to resign within 1-2 weeks since I have signed the offer letter and waiting for visa?What company will do, if I send their offer letter to another company