002919: Unable to generate a valid coordinate system. Verify that a valid definition exists in the PostGIS spatial_ref_sys table.

Description

You attempted to enable feature binning on a class using a coordinate system that does not exist in the PostGIS spatial_ref_sys table.

When using the PostgreSQL PG_GEOMETRY spatial type, your are responsible for populating the spatial_ref_sys table with coordinate systems. By default, PostGIS populates the table with well-known EPSG coordinate systems and does not include well-known Esri coordinate systems (the coordinate system you specified).

Solution

To use a PCS or GCS that is a well-known Esri coordinate system, add the definition to the spatial_ref_sys_table. Specifically, add the proj4string to perform ST_Transform functions.