March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello everyone,
It has been a few weeks I am using Power Query and Power BI, however there are still a very important amount of things I have to learn.
Usually when I am confronting an issue, I would find the answer through the community. However, I am now stuck with the following problem and I do think there is an answer with Python from what I read from other website.
However, I am totally unfamiliar with Python and I do hope there is another way to do it on Power Query.
Here is my issue, I have two columns {[Coordinate X],[Coordinate Y]}, which are in lambert 93 format for instance:
{[722364.9],[6919869.7]}
But Power BI seems to only accept latitude and longitude coordinates.
How can we convert it but massively both columns?
Indeed there is a website where you can do it one by one, but there are more than 100k rows
Convertisseur de coordonnées gratuit en ligne (tool-online.com)
And another link I thought would help me was Python but my knowledge is for the moment too limited:
How to convert Lambert 93 to longitude and latitude with python 3 (moonbooks.org)
Many thanks in advance if someone could guide me!
Best regards
What system are converting the Lambert 93 coordinates into? WGS84 or something else?
Hi @Yrmouf
It shouldn't be very complicated - have you tried asking ChatGPT for the solution?
"Give me the powerquery code to convert lambert projection to wgs"
If that doesn't work please get back here and I'll have a look.
This is the most unhelpfull response I've ever seen.
"have you tried asking ChatGPT for the solution" ...
Oh boy, the humanity ....
Hi @ams1 ,
Thanks for your advice, I tried so, but the code does not seem to work, I ended up with the following code
let
Source = #"RPLS", // replace <Table> with the name of your source table
#"Added Custom" = Table.AddColumn(Source, "Lat_Long", each let
x = [Coordonnée X], // replace [Coordonnée X] with the name of your Lambert X coordinate column
y = [Coordonnée Y], // replace [Coordonnée Y] with the name of your Lambert Y coordinate column
wgs84 = List.Transform(
CoordinateSystem.Transform( #"EPSG:2154", #"EPSG:4326", {x, y} ),
each Number.Round(_, 7)
),
lat = wgs84{0},
long = wgs84{1}
),
#"Expanded Lat_Long" = Table.ExpandListColumn(#"Added Custom", "Lat_Long"),
#"Renamed Columns" = Table.RenameColumns(#"Expanded Lat_Long", {"Lat_Long", "Lat_Long_WGS"}),
#"Expanded Lat_Long_WGS" = Table.ExpandListColumn(#"Renamed Columns", "Lat_Long_WGS"),
#"Extracted Values" = Table.TransformColumns(#"Expanded Lat_Long_WGS", {{"Lat_Long_WGS", each Text.Combine(List.Transform(_, Text.From), ","), type text}}),
#"Split Column by Delimiter" = Table.SplitColumn(#"Extracted Values", "Lat_Long_WGS", Splitter.SplitTextByDelimiter(",", QuoteStyle.Csv), {"Latitude", "Longitude"}),
#"Changed Type" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Latitude", type number}, {"Longitude", type number}})
in
#"Changed Type"
It looked like after prompting CHatgpt that
CoordinateSystem.Transform
function is the source of the problem as it looks like I have to load a library, but I am not quite sure to do so when I looked into the one it adviced me to load but I guess I have to download from somewhere, but where to download it and where to load it?
Spatial = Extension.Load("Microsoft.Mashup.Engine1.Library.Spatial")
Also, why the code does not take into account the variable "Spatial"?
Many thanks for your help
Have a nice day
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
16 | |
13 | |
12 | |
9 |
User | Count |
---|---|
36 | |
31 | |
20 | |
19 | |
17 |