gis.gdal.Point.x

x Returns the X coordinate of this point: >>> OGRGeometry('POINT (1 2)').x 1.0

gis.gdal.OGRGeometry.contains()

contains(other) Returns True if this geometry contains the other, otherwise returns False.

http.QueryDict.copy()

QueryDict.copy() [source] Returns a copy of the object, using copy.deepcopy() from the Python standard library. This copy will be mutable even if the original was not.

gis.gdal.GDALBand.width

width The width of the band in pixels (X-axis).

core.files.storage.Storage.created_time()

created_time(name) [source] Returns a naive datetime object containing the creation time of the file. For storage systems that aren’t able to return the creation time this will raise NotImplementedError instead. Deprecated since version 1.10: Use get_created_time() instead.

admin.InlineModelAdmin.model

InlineModelAdmin.model The model which the inline is using. This is required.

core.files.storage.Storage.accessed_time()

accessed_time(name) [source] Returns a naive datetime object containing the last accessed time of the file. For storage systems that aren’t able to return the last accessed time this will raise NotImplementedError instead. Deprecated since version 1.10: Use get_accessed_time() instead.

sessions.backends.base.SessionBase.get_expire_at_browser_close()

get_expire_at_browser_close() Returns either True or False, depending on whether the user’s session cookie will expire when the user’s Web browser is closed.

gis.geoip.GeoIP.lat_lon()

GeoIP.lat_lon(query) Returns a coordinate tuple of (latitude, longitude),

gis.geos.GEOSGeometry.geom_type

GEOSGeometry.geom_type Returns a string corresponding to the type of geometry. For example: >>> pnt = GEOSGeometry('POINT(5 23)') >>> pnt.geom_type 'Point'