ST_Estimated_Extent — Return the 'estimated' extent of the given spatial table. The estimated is taken from the geometry column's statistics. The current schema will be used if not specified.
box2d ST_Estimated_Extent(text  schema_name, text  table_name, text  geocolumn_name);
box2d ST_Estimated_Extent(text  table_name, text  geocolumn_name);
Return the 'estimated' extent of the given spatial table. The estimated is taken from the geometry column's statistics. The current schema will be used if not specified.
For PostgreSQL>=8.0.0 statistics are gathered by VACUUM ANALYZE and resulting extent will be about 95% of the real one.
| ![[Note]](images/note.png) | |
| In absence of statistics (empty table or no ANALYZE called) this function returns NULL. Prior to version 1.5.4 an exception was thrown instead. | 
For PostgreSQL<8.0.0 statistics are gathered by update_geometry_stats() and resulting extent will be exact.
Availability: 1.0.0
 This method supports Circular Strings and Curves
 This method supports Circular Strings and Curves