-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy path__init__.py
More file actions
29 lines (25 loc) · 1.29 KB
/
Copy path__init__.py
File metadata and controls
29 lines (25 loc) · 1.29 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
# -*- coding: utf-8 -*-
"""
/***************************************************************************
opeNoise
opeNoise allows to compute the noise level generated by point source or
by road source at fixed receiver points and buildings.
-------------------
begin : March 2014
copyright : (C) 2014 by Arpa Piemonte
email : s.masera@arpa.piemonte.it
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
from __future__ import absolute_import
def classFactory(iface):
# load opeNoise class from file opeNoise
from .opeNoise import opeNoise
return opeNoise(iface)