Re: django-raster rendering raster url

2018-07-05 Thread Xristos Xristoou
i need this help Τη Τετάρτη, 4 Ιουλίου 2018 - 4:54:23 μ.μ. UTC+3, ο χρήστης Jason έγραψε: > > No. Ever see a tile floor? each tile is one image with a filename. you > use the x y coordinates to get the path to that image > -- You received this message because you are subscribed to the Google

Re: django-raster rendering raster url

2018-07-04 Thread Xristos Xristoou
Τη Τετάρτη, 4 Ιουλίου 2018 - 4:54:23 μ.μ. UTC+3, ο χρήστης Jason έγραψε: > > No. Ever see a tile floor? each tile is one image with a filename. you > use the x y coordinates to get the path to that image > how to find this information ?because that image converting to 3857 system? -- You

Re: django-raster rendering raster url

2018-07-04 Thread Jason
No. Ever see a tile floor? each tile is one image with a filename. you use the x y coordinates to get the path to that image -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, se

Re: django-raster rendering raster url

2018-07-04 Thread Xristos Xristoou
hello you mean that need height/width or some pixel inside in image ? thank you Τη Τρίτη, 3 Ιουλίου 2018 - 11:33:09 μ.μ. UTC+3, ο χρήστης Jason έγραψε: > > No, they don't mean coordinates, they mean the actual index location in a > grid. > > Say you have a 100x100 grid, each (x, y) coordinate

Re: django-raster rendering raster url

2018-07-03 Thread Jason
No, they don't mean coordinates, they mean the actual index location in a grid. Say you have a 100x100 grid, each (x, y) coordinate like (1, 5) represents one tile image. On Tuesday, July 3, 2018 at 3:43:07 PM UTC-4, Xristos Xristoou wrote: > > i want to add raster functionality in django using

django-raster rendering raster url

2018-07-03 Thread Xristos Xristoou
i want to add raster functionality in django using postgis database using django-raster package and this docs . here my code : models.py from django.contrib.gis.db import modelsclass RasterWithName(models.Model): raster = models.Ras