<div>Hi all</div>
<div> </div>
<div>I am trying to add a new equal area projection into postgis (behrmann and/or Robinson). I am struggling to get this to work. From the "<a href="http://spatialreference.org">spatialreference.org</a>" website I uploaded the following into postgis:</div>

<div> </div>
<div> INSERT into spatial_ref_sys (srid, auth_name, auth_srid, proj4text, srtext) values ( 954017, 'esri', 54017, '', 'PROJCS["World_Behrmann",GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]],PROJECTION["Behrmann"],PARAMETER["False_Easting",0],PARAMETER["False_Northing",0],PARAMETER["Central_Meridian",0],UNIT["Meter",1],AUTHORITY["EPSG","54017"]]');</div>

<div> </div>
<div>After this I add some data in Behrmann projection using shp2pgsql, but trying a transform query such as </div>
<div> </div>
<div>select AsText(transform(GeomFromText('Point(-75 10)',4326),954017))</div>
<div> </div>
<div>does not work and crashes postgis.</div>
<div> </div>
<div>I really need to get a global equal area projection to work for my project (have been using Plate Carree, but obviosly not good for performing area intersects) and would be grateful for any pointers on how to do this.</div>

<div> </div>
<div>Many thanks</div>
<div> </div>
<div>Mark</div>