forked from mapnik/python-mapnik
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrasterlite_test.py
More file actions
38 lines (30 loc) · 1.08 KB
/
Copy pathrasterlite_test.py
File metadata and controls
38 lines (30 loc) · 1.08 KB
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
#!/usr/bin/env python
from nose.tools import eq_,assert_almost_equal
from utilities import execution_path, run_all
import os, mapnik
def setup():
# All of the paths used are relative, if we run the tests
# from another directory we need to chdir()
os.chdir(execution_path('.'))
if 'rasterlite' in mapnik.DatasourceCache.plugin_names():
def test_rasterlite():
ds = mapnik.Rasterlite(
file = '../data/rasterlite/globe.sqlite',
table = 'globe'
)
e = ds.envelope()
assert_almost_equal(e.minx,-180, places=5)
assert_almost_equal(e.miny, -90, places=5)
assert_almost_equal(e.maxx, 180, places=5)
assert_almost_equal(e.maxy, 90, places=5)
eq_(len(ds.fields()),0)
query = mapnik.Query(ds.envelope())
for fld in ds.fields():
query.add_property_name(fld)
fs = ds.features(query)
feat = fs.next()
eq_(feat.id(),1)
eq_(feat.attributes,{})
if __name__ == "__main__":
setup()
exit(run_all(eval(x) for x in dir() if x.startswith("test_")))