~ubuntu-branches/ubuntu/trusty/liblas/trusty-proposed

« back to all changes in this revision

Viewing changes to python/tests/Schema.txt

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2014-01-05 17:00:29 UTC
  • mfrom: (7.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140105170029-ddtp0j63x5jvck2u
Tags: 1.7.0+dfsg-2
Fixed missing linking of system boost component.
(closes: #733282)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
  >>> from liblas import schema
 
2
  >>> from liblas import header
 
3
  >>> from liblas import file
 
4
  
 
5
  >>> f2 = file.File('../test/data/TO_core_last_clip.las')
 
6
 
 
7
 
 
8
  >>> f = schema.Schema()
 
9
  >>> f.size
 
10
  20
 
11
  
 
12
 
 
13
  >>> h = f2.header
 
14
  >>> f = h.schema
 
15
  
 
16
  >>> h.version
 
17
  '1.0'
 
18
  
 
19
  >>> f.size
 
20
  28
 
21
 
 
22
  
 
23
  >>> h = header.Header()
 
24
  >>> f = h.schema
 
25
 
 
26
  
 
27
  >>> f.size
 
28
  34
 
29
 
 
30
 
 
31
 
 
32
  >>> h.schema = f
 
33
  
 
34
  >>> h.data_record_length
 
35
  34
 
36