Results of 1 - 10 of about 11 for Polygon (0.029 sec.)
- GEOS API — Django 4.0.6 ドキュメント 13354
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
>>> line [ - 2 ] (50.0, 0.0) Whereas indexing on a Polygon will return the ring (a LinearRing object) corresp ...
the index: >>> from django.contrib.gis.geos import Polygon >>> poly = Polygon ( (( 0.0 , 0.0 ), ( 0.0 , 50.0 ...
t s 1 for LineString s and MultiLineString s 2 for Polygon s and MultiPolygon s -1 for empty GeometryCollecti ...
ype: Geometry ID Point 0 LineString 1 LinearRing 2 Polygon 3 MultiPoint 4 MultiLineString 5 MultiPolygon 6 Ge ...
-
https://man.plustar.jp/django/ref/contrib/gis/geos.html
- [similar]
- GIS QuerySet API リファレンス — Django 4.0.6 ドキュメント 10402
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
nverted to a geometry where necessary using the ST_Polygon function. See also the introduction to raster look ...
1, rst, 2) B, C rast__contains=geom ST_Contains(ST_Polygon(rast), geom) B, C rast__1__contains=geom ST_Contai ...
ns(ST_Polygon(rast, 1), geom) B, C poly__contains=rst ST_Contain ...
s(poly, ST_Polygon(rst)) B, C poly__contains=(rst, 1) ST_Contains(pol ...
-
https://man.plustar.jp/django/ref/contrib/gis/geoquerysets.html
- [similar]
- GDAL API — Django 4.0.6 ドキュメント 10188
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
of features contained in that layer (e.g. points, polygons, etc.), as well as the names and types of any add ...
rom django.contrib.gis.gdal import OGRGeometry >>> polygon = OGRGeometry ( 'POLYGON((0 0, 5 0, 5 5, 0 5))' ) ...
ing. classmethod from_bbox ( bbox ) ¶ Constructs a Polygon from the given bounding-box (a 4-tuple). __len__ ( ...
points in a LineString , the number of rings in a Polygon , or the number of geometries in a GeometryCollect ...
-
https://man.plustar.jp/django/ref/contrib/gis/gdal.html
- [similar]
- GeoDjango Tutorial — Django 4.0.6 ドキュメント 9068
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
RI Shapefile' successful. 1: TM_WORLD_BORDERS-0.3 (Polygon) ...\> ogrinfo world\data\TM_WORLD_BORDERS-0.3.shp ...
RI Shapefile' successful. 1: TM_WORLD_BORDERS-0.3 (Polygon) ogrinfo tells us that the shapefile has one layer ...
, and that this layer contains polygon data. To find out more, we'll specify the layer na ...
essful. Layer name: TM_WORLD_BORDERS-0.3 Geometry: Polygon Feature Count: 246 Extent: (-180.000000, -90.00000 ...
-
https://man.plustar.jp/django/ref/contrib/gis/tutorial.html
- [similar]
- LayerMapping data import utility — Django 4.0.6 ドキュメント 8855
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ource, like a shapefile (here we're using a simple polygon shapefile, test_poly.shp , with three features): > ...
3) 3 >>> print ( layer . geom_type ) # Should be 'Polygon' Polygon >>> print ( layer . srs ) # WGS84 in WKT ...
) # corresponds to the 'str' field poly = models . PolygonField ( srid = 4269 ) # we want our model in a diff ...
del field maps to the 'str' layer field. 'poly' : 'POLYGON', # For geometry fields use OGC name. } # The mapp ...
-
https://man.plustar.jp/django/ref/contrib/gis/layermapping.html
- [similar]
- Geographic Database Functions — Django 4.0.6 ドキュメント 8713
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
Output format その他 Area Azimuth Difference ForcePolygonCW AsGeoJSON IsValid Distance BoundingCircle Inters ...
sGML ( 'poly' )) >>> print ( qs [ 0 ] . gml ) <gml:Polygon srsName="EPSG:4326"><gml:OuterBoundaryIs>-147.7871 ...
.. -147.78711,70.245363</gml:OuterBoundaryIs></gml:Polygon> Keyword Argument 説明 precision Specifies the num ...
= AsKML ( 'poly' )) >>> print ( qs [ 0 ] . kml ) <Polygon><outerBoundaryIs><LinearRing><coordinates>-103.041 ...
-
https://man.plustar.jp/django/ref/contrib/gis/functions.html
- [similar]
- GeoDjango Database API — Django 4.0.6 ドキュメント 7717
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
t Zipcode >>> z = Zipcode ( code = 77096 , poly = 'POLYGON(( 10 10, 10 20, 20 20, 20 15, 10 10))' ) >>> z . s ...
eos import GEOSGeometry >>> poly = GEOSGeometry ( 'POLYGON(( 10 10, 10 20, 20 20, 20 15, 10 10))' ) >>> z = Z ...
ansform procedure: >>> poly_3084 = GEOSGeometry ( 'POLYGON(( 10 10, 10 20, 20 20, 20 15, 10 10))' , srid = 30 ...
X X X X Distance X X X X X Envelope X X X X X ForcePolygonCW X X GeoHash X X (≥ 5.7.5) X (LWGEOM/RTTOPO) Inte ...
-
https://man.plustar.jp/django/ref/contrib/gis/db-api.html
- [similar]
- Geographic Feeds — Django 4.0.6 ドキュメント 7450
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
): def item_geometry ( self , obj ): # Returns the polygon. return obj . poly SyndicationFeed Subclasses ¶ Th ...
-
https://man.plustar.jp/django/ref/contrib/gis/feeds.html
- [similar]
- 索引 — Django 4.0.6 ドキュメント 7379
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
unctions のクラス) centroid (GEOSGeometry の属性) (Polygon の属性) change_form_template (ModelAdmin の属性) c ...
ngo.contrib.gis.db.models のクラス) exterior_ring (Polygon の属性) extra (InlineModelAdmin の属性) extra() (d ...
orce_str() (django.utils.encoding モジュール) ForcePolygonCW (django.contrib.gis.db.models.functions のクラス ...
の属性) from_bbox() (OGRGeometry のクラスメソッド) (Polygon のクラスメソッド) from_db() (Model のクラスメソッド ...
-
https://man.plustar.jp/django/genindex.html
- [similar]
- Django 4.0.1 release notes — Django 4.0.6 ドキュメント 7379
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ed a long standing bug in Geometry Collections and Polygon that caused a crash on some platforms (reported on ...
-
https://man.plustar.jp/django/releases/4.0.1.html
- [similar]