You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/python
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
class ArcMany:
|
|
def __init__(self, argv2):
|
|
self.geometry_list2 = [float(ele) for ele in argv2[0:2]]
|
|
self.id = int(argv2[2])
|
|
|
|
|
|
|