KP123
PostGIS UndefinedFunctionError (Geo.PostGIS.Geometry.equal?/2)
Attempting to insert %Geo.Multipoint{} struct into the db. When casting my changeset, I get the following error message (UndefinedFunctionError) function Geo.PostGIS.Geometry.equal?/2 is undefined or private.
My code is as follows:
defmodule HeatMap do
use Ecto.Schema
import Ecto.Changeset
schema "heat_maps" do
field :name, :string
field :geometry, Geo.PostGIS.Geometry
timestamps()
end
@doc false
def changeset(map, attrs) do
map
|> cast(attrs, [:name, :geometry])
|> validate_required([:name, :geometry])
end
end
# Error happens here
HeatMap.changeset(
%HeatMap{},
%{
name: "Some Map",
geometry: %Geo.MultiPoint{
coordinates: [{-73, 40}],
srid: 4326
}
}
)
Has anyone encountered this problem? How can I go about making Ecto.Changeset happy?
Marked As Solved
LostKobrakai
Update your geo_postgis dependency (to at least 3.4.0)
https://github.com/bryanjos/geo_postgis/commit/4176baf495bad50c92360c55477ff6fc4a3f2de8
0
Last Post!
KP123
Popular in Questions
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
Original source of discussion: This topic on the Pragmatic Programmers’ Functional Web Development with Elixir, OTP, and Phoenix forum.
...
New
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar.
I p...
New
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
Hi!
Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New
Other popular topics
Hello, how can I check the Phoenix version ?
Thanks !
New
Hello!
Sorry for this astonishing simple question, but I’m really stuck. I try to set up the intellij-elixir plugin, but I don’t know ho...
New
Hey,
Just curious what are the main benefits of Elixir compared to Clojure?
When is Elixir more useful than Clojure and vice versa?
Th...
New
What learn first? Rust or Elixir
Hi Elixir community!
I’m here because i want learn a new language. I’m a junior developer and mainly i ...
New
Hello all!
I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New
Posting this to see if we can make things easier for people to get into Neovim. If you use Neovim and have a favourite distro please let ...
New
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #elixirconf-us
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










