Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
4326ac68
Kaydet (Commit)
4326ac68
authored
Eki 09, 2015
tarafından
Daniel Wiesmann
Kaydeden (comit)
Claude Paroz
Eki 09, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
[1.9.x] Fixed #25533 -- Changed datatype mapping for GDALRasters
Backport of
5d898500
from master.
üst
2c11002f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
const.py
django/contrib/gis/gdal/raster/const.py
+2
-2
test_raster.py
tests/gis_tests/gdal_tests/test_raster.py
+21
-0
No files found.
django/contrib/gis/gdal/raster/const.py
Dosyayı görüntüle @
4326ac68
...
...
@@ -2,7 +2,7 @@
GDAL - Constant definitions
"""
from
ctypes
import
(
c_
byte
,
c_double
,
c_float
,
c_int16
,
c_int32
,
c_uint16
,
c_uint32
,
c_
double
,
c_float
,
c_int16
,
c_int32
,
c_ubyte
,
c_uint16
,
c_uint32
,
)
# See http://www.gdal.org/gdal_8h.html#a22e22ce0a55036a96f652765793fb7a4
...
...
@@ -29,7 +29,7 @@ GDAL_INTEGER_TYPES = [1, 2, 3, 4, 5]
# or to hold the space for data to be read into. The lookup below helps
# selecting the right ctypes object for a given gdal pixel type.
GDAL_TO_CTYPES
=
[
None
,
c_byte
,
c_uint16
,
c_int16
,
c_uint32
,
c_int32
,
None
,
c_
u
byte
,
c_uint16
,
c_int16
,
c_uint32
,
c_int32
,
c_float
,
c_double
,
None
,
None
,
None
,
None
]
...
...
tests/gis_tests/gdal_tests/test_raster.py
Dosyayı görüntüle @
4326ac68
...
...
@@ -121,6 +121,27 @@ class GDALRasterTests(unittest.TestCase):
self
.
assertEqual
(
len
(
self
.
rs
.
bands
),
1
)
self
.
assertIsInstance
(
self
.
rs
.
bands
[
0
],
GDALBand
)
def
test_memory_based_raster_creation
(
self
):
# Create uint8 raster with full pixel data range (0-255)
rast
=
GDALRaster
({
'datatype'
:
1
,
'width'
:
16
,
'height'
:
16
,
'srid'
:
4326
,
'bands'
:
[{
'data'
:
range
(
256
),
'nodata_value'
:
255
,
}],
})
# Get array from raster
result
=
rast
.
bands
[
0
]
.
data
()
if
numpy
:
result
=
result
.
flatten
()
.
tolist
()
# Assert data is same as original input
self
.
assertEqual
(
result
,
list
(
range
(
256
)))
def
test_file_based_raster_creation
(
self
):
# Prepare tempfile
rstfile
=
tempfile
.
NamedTemporaryFile
(
suffix
=
'.tif'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment