検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 28 for Geometry (0.024 sec.)
GEOS API — Django 4.0.6 ドキュメント 11962
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... API ¶ Background ¶ What is GEOS? ¶ GEOS stands for Geometry Engine - Open Source , and is a C++ library, porte ... ures include: A BSD-licensed interface to the GEOS geometry routines, implemented purely in Python using ctype ... s . Loosely-coupled to GeoDjango. For example, GEOSGeometry objects may be used outside of a Django project/ap ... MODULE set or use a database, etc. Mutability: GEOSGeometry objects may be modified. Cross-platform and tested ...
https://man.plustar.jp/django/ref/contrib/gis/geos.html - [similar]
GIS QuerySet API リファレンス — Django 4.0.6 ドキュメント 11683
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... spatial lookups in this section are available for GeometryField and RasterField . For an introduction, see th ... All examples in the reference below are given for geometry fields and inputs, but the lookups can be used the ... r input, the input is automatically converted to a geometry where necessary using the ST_Polygon function. See ... of the lookup, and raster input can be mixed with geometry inputs. Bilateral raster support B : the operator ...
https://man.plustar.jp/django/ref/contrib/gis/geoquerysets.html - [similar]
GDAL API — Django 4.0.6 ドキュメント 10716
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... y, all the features in a given layer have the same geometry type. The geom_type property of a layer is an OGRG ... ) : >>> layer . num_feat 3 geom_type ¶ Returns the geometry type of the layer, as an OGRGeomType object: >>> l ... layer. A spatial filter can only be set with an OGRGeometry instance, a 4-tuple extent, or None . When set wit ... se ) ¶ A method that returns a list containing the geometry of each feature in the layer. If the optional argu ...
https://man.plustar.jp/django/ref/contrib/gis/gdal.html - [similar]
Geographic Database Functions — Django 4.0.6 ドキュメント 10602
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... oundingCircle Intersection MakeValid AsGML MemSize GeometryDistance Centroid SymDifference Reverse AsKML NumGe ... ession and returns a GeoJSON representation of the geometry. Note that the result is not a complete GeoJSON st ... ructure but only the geometry key content of a GeoJSON structure. See also GeoJS ... raphic Markup Language (GML) representation of the geometry. 実装例: >>> qs = Zipcode . objects . annotate ( g ...
https://man.plustar.jp/django/ref/contrib/gis/functions.html - [similar]
Geographic Feeds — Django 4.0.6 ドキュメント 10405
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ss MyFeed ( Feed ): # First, as a class attribute. geometry = ... item_geometry = ... # Also a function with n ... o arguments def geometry ( self ): ... def item_geometry ( self ): ... # An ... d as a function with a single argument def geometry ( self , obj ): ... def item_geometry ( self , ite ... m ): ... geometry ( obj ) ¶ Takes the object returned by get_object( ...
https://man.plustar.jp/django/ref/contrib/gis/feeds.html - [similar]
GeoDjango Model API — Django 4.0.6 ドキュメント 9618
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ield Types ¶ Spatial fields consist of a series of geometry field types and one raster field type. Each of the ... geometry field types correspond to the OpenGIS Simple Featu ... n [1] . There is no such standard for raster data. GeometryField ¶ class GeometryField ¶ The base class for ge ... class MultiPolygonField ¶ Stores a MultiPolygon . GeometryCollectionField ¶ class GeometryCollectionField ¶ S ...
https://man.plustar.jp/django/ref/contrib/gis/model-api.html - [similar]
GeoJSON Serializer — Django 4.0.6 ドキュメント 9569
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ion when it is called by serializers.serialize() : geometry_field : A string containing the name of a geometry ... field to use for the geometry key of the GeoJSON feature. This is only needed wh ... en you have a model with more than one geometry field and you don't want to use the first defined ... geometry field (by default, the first geometry field is picked). srid : The SRID to use for the g ...
https://man.plustar.jp/django/ref/contrib/gis/serializers.html - [similar]
GeoDjango Database API — Django 4.0.6 ドキュメント 9373
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... for raster fields. Creating and Saving Models with Geometry Fields ¶ Here is an example of how to create a geo ... 0 20, 20 20, 20 15, 10 10))' ) >>> z . save () GEOSGeometry objects may also be used to save geometric models: ... >>> from django.contrib.gis.geos import GEOSGeometry >>> poly = GEOSGeometry ( 'POLYGON(( 10 10, 10 20, ... poly = poly ) >>> z . save () Moreover, if the GEOSGeometry is in a different coordinate system (has a differe ...
https://man.plustar.jp/django/ref/contrib/gis/db-api.html - [similar]
GeoDjango Tutorial — Django 4.0.6 ドキュメント 8865
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... sely-coupled, high-level Python interfaces for GIS geometry and raster operations and data manipulation in dif ... ferent formats. Editing geometry fields from the admin. This tutorial assumes famil ... file' successful. Layer name: TM_WORLD_BORDERS-0.3 Geometry: Polygon Feature Count: 246 Extent: (-180.000000, ... file' successful. Layer name: TM_WORLD_BORDERS-0.3 Geometry: Polygon Feature Count: 246 Extent: (-180.000000, ...
https://man.plustar.jp/django/ref/contrib/gis/tutorial.html - [similar]
GeoDjango — Django 4.0.6 ドキュメント 8504
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... odel API Spatial Field Types Spatial Field Options Geometry Field Options GeoDjango Database API Spatial Backe ... nds Creating and Saving Models with Geometry Fields Creating and Saving Models with Raster Fiel ... ifference Distance Envelope ForcePolygonCW GeoHash GeometryDistance Intersection IsValid Length LineLocatePoin ... units Measurement API GEOS API Background Tutorial Geometry Objects Geometry Collections Prepared Geometries G ...
https://man.plustar.jp/django/ref/contrib/gis/index.html - [similar]
PREV 1 2 3 NEXT