In example of the page ST_Project the select is
SELECT ST_AsText(ST_Project('POINT(0 0)'::geography, 100000, 45));
st_astext
------------------------------------------
POINT(0.63523102912532 0.63947233472882)
(1 row)
But, in my enviroment this code give me an error like "Azimuth must be between -2PI and 2PI".
After a few tryings I solve with :
SELECT ST_AsText(ST_Project('POINT(0 0)'::geography, 100000, radians(45) ))
The sample in page tells the data type expected is in degrees, and the function expects radians.
May I using wrong PostGIS version?
Thanks.
BTW : My PostGIS version : 2.0
