예제 #1
0
 def __init__(self, **kwargs):
     """Process initialization"""
     # init process
     MapcheteProcess.__init__(self, **kwargs)
     self.identifier = "my_process_id",
     self.title="My long process title",
     self.version = "0.1",
     self.abstract="short description on what my process does"
예제 #2
0
 def __init__(self, **kwargs):
     """Process initialization"""
     # init process
     MapcheteProcess.__init__(self, **kwargs)
     self.identifier = "my_process_id",
     self.title = "My long process title",
     self.version = "0.1",
     self.abstract = "short description on what my process does"
예제 #3
0
 def __init__(self, config):
     MapcheteProcess.__init__(self, config)
     self.identifier = "example_process"
     self.title = "example process file",
     self.version = "dirty pre-alpha",
     self.abstract = "used for testing"
예제 #4
0
파일: tilify.py 프로젝트: ungarj/mapchete
 def __init__(self, **kwargs):
     MapcheteProcess.__init__(self, **kwargs)
     self.identifier = "tilify"
     self.title = "tilifies raster dataset into tile pyramid",
     self.version = "current",
     self.abstract = "used for raster2pyramid CLI"
예제 #5
0
파일: tilify.py 프로젝트: gijs/mapchete
 def __init__(self, **kwargs):
     MapcheteProcess.__init__(self, **kwargs)
     self.identifier = "tilify"
     self.title = "tilifies raster dataset into tile pyramid",
     self.version = "current",
     self.abstract = "used for raster2pyramid CLI"
예제 #6
0
 def __init__(self, config):
     MapcheteProcess.__init__(self, config)
     self.identifier = "example_process"
     self.title = "example process file",
     self.version = "dirty pre-alpha",
     self.abstract = "used for testing"