in the new django version support raster field and i follow this manual for geodjango raster field and this questions for add raster i have build a simple demo.
here the code :
settings.py
postgis database backend
'django.contrib.gis.db.backends.postgis'
models.py
from django.db import models
from django.contrib.gis.db import models
class Elevation(models.Model):
name = models.CharField(max_length=100)
rast = models.RasterField()
all works fine without error.
but i have one BIG question where i dont know how to complete it.
how to display this raster in some web map like leaflet ? any idea how ?some tutorial to help me ?
thank you