File: ironpython.txt

package info (click to toggle)
liblas 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,888 kB
  • ctags: 4,614
  • sloc: cpp: 31,630; xml: 4,195; python: 2,928; ansic: 2,439; cs: 2,411; sh: 143; makefile: 37
file content (36 lines) | stat: -rwxr-xr-x 957 bytes parent folder | download | duplicates (3)
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
.. _ironpython:

*********************************************
IronPython Tutorial
*********************************************

This basic tutorial explains how to use libLAS to read and write 
LIDAR data encoded in LAS file format from IronPython.

=============================================
Hello world
=============================================

.. code-block:: python

 import System
 import System.Text
 import LibLAS

 class Program(object):
 	def Main(self, args):
 		try:
 			try:
 				lasreader = LASReader()
 				lasheader = lasreader.GetHeader()
 				laswriter = LASWriter()
 				Console.WriteLine('Number of points in file= {0}', lasheader.PointRecordsCount)
 			except LASException, e:
 				Console.WriteLine('\nLASException! Msg: {0}', e.Message)
 			except None:
 				Console.WriteLine('Unknown exception caught')
 		finally:
 			Console.WriteLine('Do i need something to do?')
 		Console.WriteLine('End of file')
 		Console.Read()