paddleman
Hello folks.
I am playing around with using a PostGIS enabled database in Livebook (with Maplibre).
I figured out how to add Postgrex types to handle the Geometry type used by PostGIS. However, when trying to reference the results of a query in LiveBook through the following query:
stations = Postgrex.query!(conn, "select * from bc_stns limit 100", [])
then trying to reference a field in the query results:
geo_pts = stations.geom
I get the following error. I am missing something basic, but cannot figure it out.
** (KeyError) key :geom not found in: %Postgrex.Result{
command: :select,
columns: ["id", "station_number", "station_name", "prov", "hyd_status",
"drainage_area_gross", "drainage_area_effect", "geom", "latitude",
"longitude", "from_year", "to_year", "record_length", "regulated",
"reg_from", "reg_to", "station_id"],
rows: [
[
4858,
"07EA001",
"FINLAY RIVER AT WARE",
"BC",
"D",
11100.0,
nil,
%Geo.Point{
coordinates: {-125.62639, 57.42083},
srid: 4269,
properties: %{}
},
57.42083,
-125.62639,
1960,
1983,
23,
false,
nil,
nil,
4858
],
All help is appreciated.
Thanks.
DJ
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Latest Livebook Threads
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
al2o3cr
Postgrex.query!returns a singlePostgrex.Resultvalue, you’ll need to extract the data from the result’srowsandcolumns.paddleman
Thanks for the reply.
Yes. I can call
result.rowsand get returned a map of maps with all the values. I can callresult.columnsand get a map of column (field) names as strings.What I want to do is pass a map of the values of a column into another function (the “id” column, or the “geom” column. How do I access that value?
I think I am missing something basic in elixir… but if I try
result.rows.id I get a key error.
Thinking the issue was the keys are strings, not atoms, I tried
result.rows["id"]and received the following error:** (ArgumentError) the Access module supports only keyword lists (with atom keys), got "id"What am I missing?
Thanks again for the help.
Regards
DJ
paddleman
Okay, so I solve my particular issue. I merged teh column and row values into a map and then worked with that.
Here is the function that did that if anyone else is interested:
Thanks again for all help.
DJ
al2o3cr
Neither of those things are maps.
rowsis a list of lists of mixed typescolumnsis a list of binariesA simple way to get something closer to what you want might be:
This will give you a list of maps with string keys. HOWEVER, the results may not be what you expect if
result.columnshas duplicate names (since a Map can only have one value for a key).Alternatively, consider a library like Ecto that has already taken care of details llke this.
paddleman
cross reply … I was working on that this morning.
Thanks again, al2o3cr
DJ
jonatanklosko
You can also use
Table.to_rows(stations)to convert the result to list of maps : )