I converted coordinates in SQL to geographic type of POINT:
geography::Point(c.Latitude,c.Longitude,4326).ToString()
In R, I can see that this column is of type char, not geom even though I converted it properly. I also tried conversion without using .ToString() but there was an error in this column when I executed SQL code in R. In SQL it showed my sth like this as POINT:
0xE6100000010CC2BEBAEEA0824940F37CC85CBDE33040
Is it possible at all to convert data to geom type in SQL and see them as geom in R? Or maybe I should do this only in R?