-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest_functions.py
57 lines (45 loc) · 1.79 KB
/
test_functions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from os.path import join
from geoalchemy2.elements import WKBElement
from geoalchemy2.shape import to_shape
from shapely.geometry import Point
from snowexsql.functions import *
from .sql_test_base import DBSetup
import pytest
@pytest.mark.skip('Need to figure out how to upload a raster for testing')
class TestFunctions(DBSetup):
def setup_class(self):
"""
Setup the database one time for testing
"""
super().setup_class()
self.raster_f = join(self.data_dir, 'be_gm1_0328', 'w001001x.adf')
u = UploadRaster(filename=self.raster_f, epsg=26912, use_s3=False)
u.submit(self.session)
def test_pixel_as_point(self):
"""
Test coordinate retrieval of a single pixel
"""
# Get the first pixel as a point
records = self.session.query(ST_PixelAsPoint(ImageData.raster, 1, 1)).limit(1).scalar()
# Get the Geometry from the Well known binary format
q = self.session.scalar(records.ST_GeomFromEWKB())
# Check that its the correct type
assert isinstance(q, WKBElement)
# Convert geom to shapely object and compare
assert to_shape(q) == Point(743000, 4324500)
# def test_pixel_as_points(self):
# '''
# Test coordinate retrieval of a single pixel
# '''
#
# # Get the first pixel as a point
# records = self.session.query(ST_PixelAsPoints(ImageData.raster)).limit(5).all()
#
# # Check that its the correct type
# for r in records:
# # Get the Geometry from the Well known binary format
# q = self.session.scalar(r[0].ST_GeomFromEWKB())
#
# assert isinstance(q, WKBElement)
# Convert geom to shapely object and compare
# assert to_shape(q) == Point(743000, 4324500)