Getting longitude/latitude coordinates from Addresses?











up vote
2
down vote

favorite












I got a CSV file with more than 15000 address, and I need to show them on a map of the South-West of France.



I've found the MMQGIS plugin on QGIS, but it does so without the right SCR.



Do you have any idea to help me convert my addresses? I searched on the Internet and didn't find any adequate solution.










share|improve this question




















  • 4




    Could you please a) expand on what you did already and b) give some more details, especially what "SCR" is.
    – Erik
    Dec 7 at 10:16















up vote
2
down vote

favorite












I got a CSV file with more than 15000 address, and I need to show them on a map of the South-West of France.



I've found the MMQGIS plugin on QGIS, but it does so without the right SCR.



Do you have any idea to help me convert my addresses? I searched on the Internet and didn't find any adequate solution.










share|improve this question




















  • 4




    Could you please a) expand on what you did already and b) give some more details, especially what "SCR" is.
    – Erik
    Dec 7 at 10:16













up vote
2
down vote

favorite









up vote
2
down vote

favorite











I got a CSV file with more than 15000 address, and I need to show them on a map of the South-West of France.



I've found the MMQGIS plugin on QGIS, but it does so without the right SCR.



Do you have any idea to help me convert my addresses? I searched on the Internet and didn't find any adequate solution.










share|improve this question















I got a CSV file with more than 15000 address, and I need to show them on a map of the South-West of France.



I've found the MMQGIS plugin on QGIS, but it does so without the right SCR.



Do you have any idea to help me convert my addresses? I searched on the Internet and didn't find any adequate solution.







qgis coordinates geocoding latitude-longitude address






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 7 at 11:36









Erik

2,787118




2,787118










asked Dec 7 at 10:08









Nicolas Devienne

111




111








  • 4




    Could you please a) expand on what you did already and b) give some more details, especially what "SCR" is.
    – Erik
    Dec 7 at 10:16














  • 4




    Could you please a) expand on what you did already and b) give some more details, especially what "SCR" is.
    – Erik
    Dec 7 at 10:16








4




4




Could you please a) expand on what you did already and b) give some more details, especially what "SCR" is.
– Erik
Dec 7 at 10:16




Could you please a) expand on what you did already and b) give some more details, especially what "SCR" is.
– Erik
Dec 7 at 10:16










2 Answers
2






active

oldest

votes

















up vote
6
down vote













So you want to geocode your file ("translate" adresses to xy coordinates).
You can search by yourself using this "geocode" keywords and you'll find plenty information.



However, in France, there is a free batch geocoder here : https://adresse.data.gouv.fr/csv



If you use it, you'll obtain a csv with xy coordinates (ESPG:4326) for each of your adresses.
Then, You can import this file in QGIS using text delimiter filetype :



Import CSV



You'll find many tutorials on how to import CSV to Qgis like here



PS: the geocoder is limited to 10 000 rows by batch, so i think you'll have to split your file which is 15 000 rows long.






share|improve this answer




























    up vote
    3
    down vote













    Sounds like you need some Geocoding. There are several ways that I may refer you to.




    1. Using QGIS plugins, e.g. MMQGIS, GeoCoding, and others (check the list) There is even one especially for France, namely Gban (not sure if it is directly available in QGIS Plugins menu, perhaps you need to install it manually, related topics: How do I install a plugin when I have the .zip file for it, How to install a QGIS plugin when offline?).


    2. There are some geocoding Python libraries, e.g. Geocoder: Simple, Consistent, GeoPy.


    3. Geocoding with the implementation of R and (as was mentioned by @Antoine Watrelot) adresse.data.gouv.fr API based on BAN data. Article: Geocoding French addresses with BAN.







    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',
      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%2f305304%2fgetting-longitude-latitude-coordinates-from-addresses%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      6
      down vote













      So you want to geocode your file ("translate" adresses to xy coordinates).
      You can search by yourself using this "geocode" keywords and you'll find plenty information.



      However, in France, there is a free batch geocoder here : https://adresse.data.gouv.fr/csv



      If you use it, you'll obtain a csv with xy coordinates (ESPG:4326) for each of your adresses.
      Then, You can import this file in QGIS using text delimiter filetype :



      Import CSV



      You'll find many tutorials on how to import CSV to Qgis like here



      PS: the geocoder is limited to 10 000 rows by batch, so i think you'll have to split your file which is 15 000 rows long.






      share|improve this answer

























        up vote
        6
        down vote













        So you want to geocode your file ("translate" adresses to xy coordinates).
        You can search by yourself using this "geocode" keywords and you'll find plenty information.



        However, in France, there is a free batch geocoder here : https://adresse.data.gouv.fr/csv



        If you use it, you'll obtain a csv with xy coordinates (ESPG:4326) for each of your adresses.
        Then, You can import this file in QGIS using text delimiter filetype :



        Import CSV



        You'll find many tutorials on how to import CSV to Qgis like here



        PS: the geocoder is limited to 10 000 rows by batch, so i think you'll have to split your file which is 15 000 rows long.






        share|improve this answer























          up vote
          6
          down vote










          up vote
          6
          down vote









          So you want to geocode your file ("translate" adresses to xy coordinates).
          You can search by yourself using this "geocode" keywords and you'll find plenty information.



          However, in France, there is a free batch geocoder here : https://adresse.data.gouv.fr/csv



          If you use it, you'll obtain a csv with xy coordinates (ESPG:4326) for each of your adresses.
          Then, You can import this file in QGIS using text delimiter filetype :



          Import CSV



          You'll find many tutorials on how to import CSV to Qgis like here



          PS: the geocoder is limited to 10 000 rows by batch, so i think you'll have to split your file which is 15 000 rows long.






          share|improve this answer












          So you want to geocode your file ("translate" adresses to xy coordinates).
          You can search by yourself using this "geocode" keywords and you'll find plenty information.



          However, in France, there is a free batch geocoder here : https://adresse.data.gouv.fr/csv



          If you use it, you'll obtain a csv with xy coordinates (ESPG:4326) for each of your adresses.
          Then, You can import this file in QGIS using text delimiter filetype :



          Import CSV



          You'll find many tutorials on how to import CSV to Qgis like here



          PS: the geocoder is limited to 10 000 rows by batch, so i think you'll have to split your file which is 15 000 rows long.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Dec 7 at 10:42









          Antoine Watrelot

          611




          611
























              up vote
              3
              down vote













              Sounds like you need some Geocoding. There are several ways that I may refer you to.




              1. Using QGIS plugins, e.g. MMQGIS, GeoCoding, and others (check the list) There is even one especially for France, namely Gban (not sure if it is directly available in QGIS Plugins menu, perhaps you need to install it manually, related topics: How do I install a plugin when I have the .zip file for it, How to install a QGIS plugin when offline?).


              2. There are some geocoding Python libraries, e.g. Geocoder: Simple, Consistent, GeoPy.


              3. Geocoding with the implementation of R and (as was mentioned by @Antoine Watrelot) adresse.data.gouv.fr API based on BAN data. Article: Geocoding French addresses with BAN.







              share|improve this answer



























                up vote
                3
                down vote













                Sounds like you need some Geocoding. There are several ways that I may refer you to.




                1. Using QGIS plugins, e.g. MMQGIS, GeoCoding, and others (check the list) There is even one especially for France, namely Gban (not sure if it is directly available in QGIS Plugins menu, perhaps you need to install it manually, related topics: How do I install a plugin when I have the .zip file for it, How to install a QGIS plugin when offline?).


                2. There are some geocoding Python libraries, e.g. Geocoder: Simple, Consistent, GeoPy.


                3. Geocoding with the implementation of R and (as was mentioned by @Antoine Watrelot) adresse.data.gouv.fr API based on BAN data. Article: Geocoding French addresses with BAN.







                share|improve this answer

























                  up vote
                  3
                  down vote










                  up vote
                  3
                  down vote









                  Sounds like you need some Geocoding. There are several ways that I may refer you to.




                  1. Using QGIS plugins, e.g. MMQGIS, GeoCoding, and others (check the list) There is even one especially for France, namely Gban (not sure if it is directly available in QGIS Plugins menu, perhaps you need to install it manually, related topics: How do I install a plugin when I have the .zip file for it, How to install a QGIS plugin when offline?).


                  2. There are some geocoding Python libraries, e.g. Geocoder: Simple, Consistent, GeoPy.


                  3. Geocoding with the implementation of R and (as was mentioned by @Antoine Watrelot) adresse.data.gouv.fr API based on BAN data. Article: Geocoding French addresses with BAN.







                  share|improve this answer














                  Sounds like you need some Geocoding. There are several ways that I may refer you to.




                  1. Using QGIS plugins, e.g. MMQGIS, GeoCoding, and others (check the list) There is even one especially for France, namely Gban (not sure if it is directly available in QGIS Plugins menu, perhaps you need to install it manually, related topics: How do I install a plugin when I have the .zip file for it, How to install a QGIS plugin when offline?).


                  2. There are some geocoding Python libraries, e.g. Geocoder: Simple, Consistent, GeoPy.


                  3. Geocoding with the implementation of R and (as was mentioned by @Antoine Watrelot) adresse.data.gouv.fr API based on BAN data. Article: Geocoding French addresses with BAN.








                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Dec 7 at 16:43

























                  answered Dec 7 at 11:21









                  Taras

                  1,8862622




                  1,8862622






























                      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.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • 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%2f305304%2fgetting-longitude-latitude-coordinates-from-addresses%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

                      Список кардиналов, возведённых папой римским Каликстом III

                      Deduzione

                      Mysql.sock missing - “Can't connect to local MySQL server through socket”