Would be great to know how to work with geometries in Julia. For example,
data = execute(conn,
"""
SELECT ST_SetSRID(ST_MakePoint(lon, lat), 4326) AS geom
FROM tbl;
""",
not_null = true) |>
DataFrame
Which package in Julia would be recommended to parse the String to a geometry in Julia?