textrasters.py 335 B

12345678910111213141516
  1. """
  2. Text-based test rasters
  3. """
  4. JSON_RASTER = """{
  5. "srid": 4326,
  6. "origin": [0, 0],
  7. "scale": [-1, 1],
  8. "skew": [0, 0],
  9. "width": 5,
  10. "height": 5,
  11. "nr_of_bands": 1,
  12. "bands": [{"data": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
  13. 15, 16, 17, 18, 19, 20, 21, 22, 23, 24]}]
  14. }
  15. """