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.
qgis coordinates geocoding latitude-longitude address
add a comment |
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.
qgis coordinates geocoding latitude-longitude address
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
add a comment |
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.
qgis coordinates geocoding latitude-longitude address
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
qgis coordinates geocoding latitude-longitude address
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
add a comment |
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
add a comment |
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 :
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.
add a comment |
up vote
3
down vote
Sounds like you need some Geocoding. There are several ways that I may refer you to.
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?).
There are some geocoding Python libraries, e.g. Geocoder: Simple, Consistent, GeoPy.
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.
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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 :
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.
add a comment |
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 :
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.
add a comment |
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 :
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.
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 :
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.
answered Dec 7 at 10:42
Antoine Watrelot
611
611
add a comment |
add a comment |
up vote
3
down vote
Sounds like you need some Geocoding. There are several ways that I may refer you to.
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?).
There are some geocoding Python libraries, e.g. Geocoder: Simple, Consistent, GeoPy.
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.
add a comment |
up vote
3
down vote
Sounds like you need some Geocoding. There are several ways that I may refer you to.
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?).
There are some geocoding Python libraries, e.g. Geocoder: Simple, Consistent, GeoPy.
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.
add a comment |
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.
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?).
There are some geocoding Python libraries, e.g. Geocoder: Simple, Consistent, GeoPy.
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.
Sounds like you need some Geocoding. There are several ways that I may refer you to.
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?).
There are some geocoding Python libraries, e.g. Geocoder: Simple, Consistent, GeoPy.
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.
edited Dec 7 at 16:43
answered Dec 7 at 11:21
Taras
1,8862622
1,8862622
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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