2015-01-13 04:20:40 +08:00
|
|
|
from django.contrib.gis.db.backends.base.features import BaseSpatialFeatures
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.db.backends.mysql.features import \
|
|
|
|
DatabaseFeatures as MySQLDatabaseFeatures
|
2015-01-13 04:20:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
class DatabaseFeatures(BaseSpatialFeatures, MySQLDatabaseFeatures):
|
|
|
|
has_spatialrefsys_table = False
|
|
|
|
supports_add_srs_entry = False
|
2015-01-25 07:03:02 +08:00
|
|
|
supports_distance_geodetic = False
|
|
|
|
supports_length_geodetic = False
|
2016-11-16 20:07:36 +08:00
|
|
|
supports_area_geodetic = False
|
2015-01-13 04:20:40 +08:00
|
|
|
supports_distances_lookups = False
|
|
|
|
supports_transform = False
|
|
|
|
supports_real_shape_operations = False
|
|
|
|
supports_null_geometries = False
|
|
|
|
supports_num_points_poly = False
|