-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathUtilities_ArcMap.pyt
More file actions
28 lines (26 loc) · 841 Bytes
/
Utilities_ArcMap.pyt
File metadata and controls
28 lines (26 loc) · 841 Bytes
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
import sys
import os
path = os.path.dirname(os.path.abspath(__file__))
sys.path.append(path)
from tools.SitemapTool import SiteMapGenerator
from tools.ClipTool import Clip
from tools.ReprojectTool import Reproject
from tools.PolygonCentroidTool import PolygonCentroidToPoint
from tools.LineEndpointTool import LineEndPoints
from tools.PointElevationTool import PointElevations
from tools.ExtractAttachmentsTool import ExtractAttachments
from tools.FTPMirrorTool import FTPMirror
class Toolbox(object):
def __init__(self):
self.label = 'ArcMapUtilities'
self.alias = 'ArcMapUtilities'
self.tools = [
Clip,
Reproject,
SiteMapGenerator,
PolygonCentroidToPoint,
LineEndPoints,
PointElevations,
ExtractAttachments,
FTPMirror,
]