Results of 1 - 7 of about 7 for poly (0.015 sec.)
- GIS QuerySet API リファレンス — Django 4.0.6 ドキュメント 13413
- " + 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 l ...
1, rst, 2) B, C rast__contains=geom ST_Contains(ST_Polygon(rast), geom) B, C rast__1__contains=geom ST_Con ...
tains(ST_Polygon(rast, 1), geom) B, C poly__contains=rst ST_Cont ...
ains(poly, ST_Polygon(rst)) B, C poly__contains=(rst, 1) ST_ ...
-
https://man.plustar.jp/django/ref/contrib/gis/geoquerysets.html
- [similar]
- GeoDjango Database API — Django 4.0.6 ドキュメント 8924
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ls import Zipcode >>> z = Zipcode ( code = 77096 , poly = 'POLYGON(( 10 10, 10 20, 20 20, 20 15, 10 10))' ...
om django.contrib.gis.geos import GEOSGeometry >>> poly = GEOSGeometry ( 'POLYGON(( 10 10, 10 20, 20 20, 2 ...
0 15, 10 10))' ) >>> z = Zipcode ( code = 77096 , poly = poly ) >>> z . save () Moreover, if the GEOSGeom ...
ng the spatial database's transform procedure: >>> poly_3084 = GEOSGeometry ( 'POLYGON(( 10 10, 10 20, 20 ...
-
https://man.plustar.jp/django/ref/contrib/gis/db-api.html
- [similar]
- GEOS API — Django 4.0.6 ドキュメント 8724
- " + 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) corr ...
the index: >>> from django.contrib.gis.geos import Polygon >>> poly = Polygon ( (( 0.0 , 0.0 ), ( 0.0 , 50 ...
0.0 , 50.0 ), ( 50.0 , 0.0 ), ( 0.0 , 0.0 )) ) >>> poly [ 0 ] <LinearRing object at 0x1044395b0> >>> poly ...
t s 1 for LineString s and MultiLineString s 2 for Polygon s and MultiPolygon s -1 for empty GeometryColle ...
-
https://man.plustar.jp/django/ref/contrib/gis/geos.html
- [similar]
- Geographic Feeds — Django 4.0.6 ドキュメント 8579
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
f geometry ( self , obj ): # Can also return: `obj.poly`, and `obj.poly.centroid`. return obj . poly . ext ...
): def item_geometry ( self , obj ): # Returns the polygon. return obj . poly SyndicationFeed Subclasses ¶ ...
-
https://man.plustar.jp/django/ref/contrib/gis/feeds.html
- [similar]
- LayerMapping data import utility — Django 4.0.6 ドキュメント 8342
- " + 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) ...
gdal import DataSource >>> ds = DataSource ( 'test_poly.shp' ) >>> layer = ds [ 0 ] >>> print ( layer . fi ...
3) 3 >>> print ( layer . geom_type ) # Should be 'Polygon' Polygon >>> print ( layer . srs ) # WGS84 in W ...
max_length = 25 ) # corresponds to the 'str' field poly = models . PolygonField ( srid = 4269 ) # we want ...
-
https://man.plustar.jp/django/ref/contrib/gis/layermapping.html
- [similar]
- GeoDjango Model API — Django 4.0.6 ドキュメント 7833
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
el ): code = models . CharField ( max_length = 5 ) poly = models . PolygonField () class Elevation ( model ...
ld ¶ class LineStringField ¶ Stores a LineString . PolygonField ¶ class PolygonField ¶ Stores a Polygon . ...
iLineStringField ¶ Stores a MultiLineString . MultiPolygonField ¶ class MultiPolygonField ¶ Stores a Multi ...
ield' , PointField ()) ) . filter ( geom__within = poly ) For more information, the PostGIS documentation ...
-
https://man.plustar.jp/django/ref/contrib/gis/model-api.html
- [similar]
- Geographic Database Functions — Django 4.0.6 ドキュメント 7742
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
Output format その他 Area Azimuth Difference ForcePolygonCW AsGeoJSON IsValid Distance BoundingCircle Int ...
qs = Zipcode . objects . annotate ( gml = AsGML ( 'poly' )) >>> print ( qs [ 0 ] . gml ) <gml:Polygon srsN ...
.. -147.78711,70.245363</gml:OuterBoundaryIs></gml:Polygon> Keyword Argument 説明 precision Specifies the ...
qs = Zipcode . objects . annotate ( kml = AsKML ( 'poly' )) >>> print ( qs [ 0 ] . kml ) <Polygon><outerBo ...
-
https://man.plustar.jp/django/ref/contrib/gis/functions.html
- [similar]
PREV
1
NEXT