forked from NatureServe-Canada/EBARTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEBAR Tools Stub.pyt
1604 lines (1351 loc) · 58.9 KB
/
EBAR Tools Stub.pyt
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Project: Ecosytem-based Automated Range Mapping (EBAR)
# Credits: Randal Greene, Christine Terwissen, Meg Southee
# © NatureServe Canada 2020 under CC BY 4.0 (https://creativecommons.org/licenses/by/4.0/)
# Program: EBAR Tools Stub.pyt
# Workaround for tool sharing issues
# import python packages
import arcpy
import ListElementNationalIDsTool
import EBARUtils
import datetime
import locale
class Toolbox(object):
def __init__(self):
"""Define the toolbox (the name of the toolbox is the name of the .pyt file)."""
self.label = 'EBAR Tools'
self.alias = 'EBARTools'
# List of tool classes associated with this toolbox
self.tools = [ImportTabularData, ImportSpatialData, GenerateRangeMap, ListElementNationalIDs,
SyncSpeciesListBiotics, AddSynonyms, ImportExternalRangeReview, ExportInputData,
SyncSpeciesListKBA, BuildEBARDownloadTable, BuildBulkDownloadTable, #FlagBadDataUsingRange,
DeleteRangeMap, ImportVisits, SummarizeDownloads, PublishRangeMap, PublishRangeMapSets,
FlagBadDataUsingID, RecordInputFeedback, DeleteInputFeedback, PrepareNSXProTransfer,
SyncEcosystemListBiotics, SyncEcosystemListKBA]
class ImportTabularData(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'Import Tabular Data'
self.description = 'Imports tabular data into the InputDataset and InputPoint tables of the EBAR geodatabase'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
# Geodatabase
param_geodatabase = arcpy.Parameter(
displayName='Geodatabase',
name='geodatabase',
datatype='DEWorkspace',
parameterType='Required',
direction='Input')
param_geodatabase.filter.list = ['Local Database', 'Remote Database']
# Raw Data File
param_raw_data_file = arcpy.Parameter(
displayName='Raw Data File',
name='raw_data_file',
datatype='DEFile',
parameterType='Required',
direction='Input')
param_raw_data_file.filter.list = ['txt', 'csv']
# Dataset Name
param_dataset_name = arcpy.Parameter(
displayName='Dataset Name',
name='dataset_name',
datatype='GPString',
parameterType='Required',
direction='Input')
# Dataset Source
param_dataset_source = arcpy.Parameter(
displayName='Dataset Source',
name='dataset_source',
datatype='GPString',
parameterType='Required',
direction='Input')
# Date Received
param_date_received = arcpy.Parameter(
displayName='Date Received',
name='date_received',
datatype='GPDate',
parameterType='Required',
direction='Input')
locale.setlocale(locale.LC_ALL, '')
param_date_received.value = datetime.datetime.now().strftime('%x')
# # Dataset Restrictions
# param_dataset_restrictions = arcpy.Parameter(
# displayName='Dataset Restrictions',
# name='dataset_restrictions',
# datatype='GPString',
# parameterType='Required',
# direction='Input')
# param_dataset_restrictions.value = 'Non-restricted'
# Sensitive Ecological Data Cat
param_sensitive_ecoogical_data_cat = arcpy.Parameter(
displayName='Sensitive Ecological Data Cat',
name='sensitive_ecoogical_data_cat',
datatype='GPString',
parameterType='Optional',
direction='Input')
# Dataset Citation
param_dataset_citation = arcpy.Parameter(
displayName='Dataset Citation',
name='dataset_citation',
datatype='GPString',
parameterType='Optional',
direction='Input')
# Data File Encoding
param_data_file_encoding = arcpy.Parameter(
displayName='Data File Encoding',
name='data_file_encoding',
datatype='GPString',
parameterType='Optional',
direction='Input')
param_data_file_encoding.filter.list = ['UTF8', 'Windows ANSI']
param_data_file_encoding.value = 'Windows ANSI'
params = [param_geodatabase, param_raw_data_file, param_dataset_name, param_dataset_source,
param_date_received, #param_dataset_restrictions
param_sensitive_ecoogical_data_cat, param_dataset_citation, param_data_file_encoding]
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
## Dataset Source needs to be a textbox, not a filtered picklist,
## because filtered picklists cannot be dynamic when published to a geoprocessing service
#if parameters[0].altered and parameters[0].value:
# parameters[3].filter.list = EBARUtils.readDatasetSources(parameters[0].valueAsText, "('T')")
# domains = arcpy.da.ListDomains(parameters[0].valueAsText)
# restrictions_list = []
# for domain in domains:
# if domain.name == 'Restriction':
# restrictions_list = list(domain.codedValues.values())
# parameters[5].filter.list = sorted(restrictions_list)
# return
domains = arcpy.da.ListDomains(parameters[0].valueAsText)
sensitive_ecoogical_data_cat_list = []
for domain in domains:
if domain.name == 'SensitiveEcologicalDataCat':
sensitive_ecoogical_data_cat_list = list(domain.codedValues.values())
parameters[5].filter.list = sorted(sensitive_ecoogical_data_cat_list)
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called "
"after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
return
class ImportSpatialData(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'Import Spatial Data'
self.description = 'Imports spatial data from a shapefile or feature class into the InputDataset table of ' + \
'the EBAR geodatabase and one of the InputPolygon, InputPoint or InputLine feature classes'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
# Geodatabase
param_geodatabase = arcpy.Parameter(
displayName='Geodatabase',
name='geodatabase',
datatype='DEWorkspace',
parameterType='Required',
direction='Input')
param_geodatabase.filter.list = ['Local Database', 'Remote Database']
# Feature Class to Import
param_import_feature_class = arcpy.Parameter(
displayName='Import Feature Class',
name='import_feature_class',
datatype='GPFeatureLayer',
parameterType='Required',
direction='Input')
param_import_feature_class.filter.list = ['Point', 'Multipoint', 'Polyline', 'Polygon', 'MultiPatch']
# Dataset Name
param_dataset_name = arcpy.Parameter(
displayName='Dataset Name',
name='dataset_name',
datatype='GPString',
parameterType='Required',
direction='Input')
# Dataset Source
# - used to check for uniqueness of records using provided IDs
# - one field map can be shared among multiple sources
param_dataset_source = arcpy.Parameter(
displayName='Dataset Source',
name='dataset_source',
datatype='GPString',
parameterType='Required',
direction='Input')
# Date Received
param_date_received = arcpy.Parameter(
displayName='Date Received',
name='date_received',
datatype='GPDate',
parameterType='Required',
direction='Input')
locale.setlocale(locale.LC_ALL, '')
param_date_received.value = datetime.datetime.now().strftime('%x')
# # Dataset Restrictions
# param_dataset_restrictions = arcpy.Parameter(
# displayName='Dataset Restrictions',
# name='dataset_restrictions',
# datatype='GPString',
# parameterType='Required',
# direction='Input')
# param_dataset_restrictions.value = 'Non-restricted'
# Sensitive Ecological Data Cat
param_sensitive_ecoogical_data_cat = arcpy.Parameter(
displayName='Sensitive Ecological Data Cat',
name='sensitive_ecoogical_data_cat',
datatype='GPString',
parameterType='Optional',
direction='Input')
# Dataset Citation
param_dataset_citation = arcpy.Parameter(
displayName='Dataset Citation',
name='dataset_citation',
datatype='GPString',
parameterType='Optional',
direction='Input')
params = [param_geodatabase, param_import_feature_class, param_dataset_name, param_dataset_source,
param_date_received, #param_dataset_restrictions
param_sensitive_ecoogical_data_cat, param_dataset_citation]
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
## Dataset Source needs to be a textbox, not a filtered picklist,
## because filtered picklists cannot be dynamic when published to a geoprocessing service
#if parameters[0].altered and parameters[0].value:
# parameters[3].filter.list = EBARUtils.readDatasetSources(parameters[0].valueAsText, "('S', 'L', 'P')")
# domains = arcpy.da.ListDomains(parameters[0].valueAsText)
# restrictions_list = []
# for domain in domains:
# if domain.name == 'Restriction':
# restrictions_list = list(domain.codedValues.values())
# parameters[5].filter.list = sorted(restrictions_list)
# return
domains = arcpy.da.ListDomains(parameters[0].valueAsText)
sensitive_ecoogical_data_cat_list = []
for domain in domains:
if domain.name == 'SensitiveEcologicalDataCat':
sensitive_ecoogical_data_cat_list = list(domain.codedValues.values())
parameters[5].filter.list = sorted(sensitive_ecoogical_data_cat_list)
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called
after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
return
class GenerateRangeMap(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'Generate Range Map'
self.description = 'Generate Range Map for a species from available spatial data'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
# Geodatabase
param_geodatabase = arcpy.Parameter(
displayName='Geodatabase',
name='geodatabase',
datatype='DEWorkspace',
parameterType='Required',
direction='Input')
param_geodatabase.filter.list = ['Local Database', 'Remote Database']
# Species
param_species = arcpy.Parameter(
displayName='Species Scientific Name',
name='species',
datatype='GPString',
parameterType='Required',
direction='Input')
# Secondary Species
param_secondary = arcpy.Parameter(
displayName='Secondary Species',
name='secondary_species',
datatype='GPString',
parameterType='Optional',
direction='Input',
multiValue=True)
# Range Version
param_version = arcpy.Parameter(
displayName='Range Version',
name='range_version',
datatype='GPString',
parameterType='Required',
direction='Input')
param_version.value = '1.0'
# Range Stage
param_stage = arcpy.Parameter(
displayName='Range Stage',
name='range_stage',
datatype='GPString',
parameterType='Required',
direction='Input')
# cannot pre-specify the list if you want to allow a value not in the list
#param_stage.filter.list = ['Auto-generated', 'Expert reviewed', 'Published']
param_stage.value = 'Auto-generated'
# Scope
param_scope = arcpy.Parameter(
displayName='Scope',
name='scope',
datatype='GPString',
parameterType='Optional',
direction='Input')
param_scope.filter.list = ['Canadian', 'Global', 'North American']
# Jurisdictions Covered
param_jurisdictions_covered = arcpy.Parameter(
displayName='Jurisdictions Covered',
name='jurisdictions_covered',
datatype='GPString',
parameterType='Optional',
direction='Input',
multiValue=True)
# Custom Polygons Covered
param_custom_polygons_covered = arcpy.Parameter(
displayName='Custom Polygons Covered',
name='custom_polygons_covered',
datatype='GPFeatureLayer',
parameterType='Optional',
direction='Input')
param_custom_polygons_covered.filter.list = ['Polygon', 'MultiPatch']
# Differentiate Usage Type
param_differentiate_usage_type = arcpy.Parameter(
displayName='Differentiate Usage Type',
name='differentiate_usage_type',
datatype='GPBoolean',
parameterType='Required',
direction='Input')
param_differentiate_usage_type.value = 'false'
# Save RangeMapInput
param_save_range_map_inputs = arcpy.Parameter(
displayName='Save RangeMapInputs',
name='save_range_map_inputs',
datatype='GPBoolean',
parameterType='Required',
direction='Input')
param_save_range_map_inputs.value = 'false'
params = [param_geodatabase, param_species, param_secondary, param_version, param_stage, param_scope,
param_jurisdictions_covered, param_custom_polygons_covered, param_differentiate_usage_type,
param_save_range_map_inputs]
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
# filter list of species
# make sure there is a geodatabase specified
## species need to be textboxes, not filtered picklists,
## because filtered picklists cannot be dynamic when published to a geoprocessing service
#if parameters[0].altered and parameters[0].value:
# param_geodatabase = parameters[0].valueAsText
# spec_list = []
# with arcpy.da.SearchCursor(param_geodatabase + '/BIOTICS_ELEMENT_NATIONAL', ['NATIONAL_SCIENTIFIC_NAME'],
# sql_clause=(None,'ORDER BY NATIONAL_SCIENTIFIC_NAME')) as cursor:
# for row in EBARUtils.searchCursor(cursor):
# spec_list.append(row['NATIONAL_SCIENTIFIC_NAME'])
# if len(spec_list) > 0:
# del row
# parameters[1].filter.list = spec_list
# parameters[2].filter.list = spec_list
# allow a stage value in addition to the ones in the standard list
## only works for optional field when published to geoprocessing service
##if parameters[4].altered:
#stage_list = ['Auto-generated', 'Expert reviewed', 'Published']
#if parameters[4].value:
# if parameters[4].valueAsText not in stage_list:
# stage_list.append(parameters[4].valueAsText)
#parameters[4].filter.list = stage_list
# build list of jurisdictions (exclude AC, NF, LB because they are used for data only, not ecoshapes)
if parameters[0].altered and parameters[0].value:
param_geodatabase = parameters[0].valueAsText
jur_list = []
with arcpy.da.SearchCursor(param_geodatabase + '/Jurisdiction', ['JurisdictionName'],
"JurisdictionAbbreviation NOT IN ('AC', 'NF', 'LB')",
sql_clause=(None,'ORDER BY JurisdictionName')) as cursor:
for row in EBARUtils.searchCursor(cursor):
jur_list.append(row['JurisdictionName'])
if len(jur_list) > 0:
del row
parameters[6].filter.list = jur_list
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called
after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
return
class ListElementNationalIDs(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'List Element National IDs'
self.description = 'Generate a comma-separated list of ELEMENT_NATIONAL_ID values from existing ' + \
'BIOTICS_ELEMENT_NATIONAL table'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
# Geodatabase
param_geodatabase = arcpy.Parameter(
displayName='Geodatabase',
name='geodatabase',
datatype='DEWorkspace',
parameterType='Required',
direction='Input')
param_geodatabase.filter.list = ['Local Database', 'Remote Database']
params = [param_geodatabase]
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called
after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
leni = ListElementNationalIDsTool.ListElementNationalIDsTool()
leni.runListElementNationalIDsTool(parameters, messages)
return
class SyncSpeciesListBiotics(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'Sync Species List Biotics'
self.description = 'Synchronize the BIOTICS_NATIONAL_ELEMENT and Species tables with Biotics'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
# Geodatabase
param_geodatabase = arcpy.Parameter(
displayName='Geodatabase',
name='geodatabase',
datatype='DEWorkspace',
parameterType='Required',
direction='Input')
param_geodatabase.filter.list = ['Local Database', 'Remote Database']
# CSV
param_csv = arcpy.Parameter(
displayName='CSV File',
name='csv_file',
datatype='DEFile',
parameterType='Required',
direction='Input')
param_csv.filter.list = ['txt', 'csv']
params = [param_geodatabase, param_csv]
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called
after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
return
class AddSynonyms(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'Add Synonyms'
self.description = 'Add BIOTICS Synonyms not already in the Species or Synonym tables'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
# Geodatabase
param_geodatabase = arcpy.Parameter(
displayName='Geodatabase',
name='geodatabase',
datatype='DEWorkspace',
parameterType='Required',
direction='Input')
param_geodatabase.filter.list = ['Local Database', 'Remote Database']
# CSV
param_csv = arcpy.Parameter(
displayName='CSV File',
name='csv_file',
datatype='DEFile',
parameterType='Required',
direction='Input')
param_csv.filter.list = ['txt', 'csv']
params = [param_geodatabase, param_csv]
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called
after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
return
class ImportExternalRangeReview(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'Import External Range Review'
self.description = 'Create review records for an existing range map based on third-party polygons'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
# Geodatabase
param_geodatabase = arcpy.Parameter(
displayName='Geodatabase',
name='geodatabase',
datatype='DEWorkspace',
parameterType='Required',
direction='Input')
param_geodatabase.filter.list = ['Local Database', 'Remote Database']
# Species
param_species = arcpy.Parameter(
displayName='Species Scientific Name',
name='species',
datatype='GPString',
parameterType='Required',
direction='Input')
# Secondary Species
param_secondary = arcpy.Parameter(
displayName='Secondary Species',
name='secondary_species',
datatype='GPString',
parameterType='Optional',
direction='Input',
multiValue=True)
# Range Version
param_version = arcpy.Parameter(
displayName='Range Version',
name='range_version',
datatype='GPString',
parameterType='Required',
direction='Input')
param_version.value = '1.0'
# Range Stage
param_stage = arcpy.Parameter(
displayName='Range Stage',
name='range_stage',
datatype='GPString',
parameterType='Required',
direction='Input')
param_stage.value = 'Auto-generated'
# External Range Table
param_external_range_table = arcpy.Parameter(
displayName='External Range Table',
name='external_range_table',
datatype=['GPTableView', 'GPFeatureLayer'],
parameterType='Required',
direction='Input')
# Presence Field
param_presence_field = arcpy.Parameter(
displayName='Presence Field',
name='presence_field',
datatype='GPString',
parameterType='Optional',
direction='Input')
# UsageType Field
param_usagetype_field = arcpy.Parameter(
displayName='UsageType Field',
name='usagetype_field',
datatype='GPString',
parameterType='Optional',
direction='Input')
# Review Label
param_review_label = arcpy.Parameter(
displayName='Review Label',
name='review_label',
datatype='GPString',
parameterType='Required',
direction='Input')
# Overall Review Notes
param_overall_review_notes = arcpy.Parameter(
displayName='Overall Review Notes',
name='overall_review_notes',
datatype='GPString',
parameterType='Optional',
direction='Input')
# Jurisdictions Covered
param_jurisdictions_covered = arcpy.Parameter(
displayName='Jurisdictions Covered',
name='jurisdictions_covered',
datatype='GPString',
parameterType='Optional',
direction='Input',
multiValue=True)
# Username
param_username = arcpy.Parameter(
displayName='Username',
name='username',
datatype='GPString',
parameterType='Required',
direction='Input')
# Additions Only
param_additions_only = arcpy.Parameter(
displayName='Additions Only',
name='additions_only',
datatype='GPBoolean',
parameterType='Required',
direction='Input')
param_additions_only.value = 'false'
params = [param_geodatabase, param_species, param_secondary, param_version, param_stage,
param_external_range_table, param_presence_field, param_usagetype_field, param_review_label,
param_overall_review_notes, param_jurisdictions_covered, param_username, param_additions_only]
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
# build list of jurisdictions (exclude AC, NF, LB because they are used for data only, not ecoshapes)
if parameters[0].altered and parameters[0].value:
param_geodatabase = parameters[0].valueAsText
jur_list = []
with arcpy.da.SearchCursor(param_geodatabase + '/Jurisdiction', ['JurisdictionName'],
"JurisdictionAbbreviation NOT IN ('AC', 'NF', 'LB')",
sql_clause=(None,'ORDER BY JurisdictionName')) as cursor:
for row in EBARUtils.searchCursor(cursor):
jur_list.append(row['JurisdictionName'])
if len(jur_list) > 0:
del row
parameters[10].filter.list = jur_list
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called
after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
return
class SyncSpeciesListKBA(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'Sync Species List KBA'
self.description = 'Synchronize the Species tables with WCS KBA updates'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
# Geodatabase
param_geodatabase = arcpy.Parameter(
displayName='Geodatabase',
name='geodatabase',
datatype='DEWorkspace',
parameterType='Required',
direction='Input')
param_geodatabase.filter.list = ['Local Database', 'Remote Database']
# CSV
param_csv = arcpy.Parameter(
displayName='CSV File',
name='csv_file',
datatype='DEFile',
parameterType='Required',
direction='Input')
param_csv.filter.list = ['txt', 'csv']
params = [param_geodatabase, param_csv]
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called
after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
return
class BuildEBARDownloadTable(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'Build EBAR Download Table'
self.description = 'Build html table of all Range Maps available for download'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
params = []
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called
after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
return
class BuildBulkDownloadTable(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'Build Bulk Download Table'
self.description = 'Build html table of all Category - Taxa Groups available for bulk download'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
params = []
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called
after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
return
class ExportInputData(object):
def __init__(self):
"""Define the tool (tool name is the name of the class)."""
self.label = 'Export Input Data'
self.description = 'Export InputPoint/Line/Polygon records, excluding "other" DatasetTypes and EBAR Restricted records'
self.canRunInBackground = True
def getParameterInfo(self):
"""Define parameter definitions"""
# Geodatabase
param_geodatabase = arcpy.Parameter(
displayName='Geodatabase',
name='geodatabase',
datatype='DEWorkspace',
parameterType='Required',
direction='Input')
param_geodatabase.filter.list = ['Local Database', 'Remote Database']
# Jurisdictions Covered
param_jurisdictions_covered = arcpy.Parameter(
displayName='Jurisdictions Covered',
name='jurisdictions_covered',
datatype='GPString',
parameterType='Required',
direction='Input',
multiValue=True)
# Include CDC Data
param_include_cdc = arcpy.Parameter(
displayName='Include CDC Data',
name='include_cdc',
datatype='GPBoolean',
parameterType='Required',
direction='Input')
param_include_cdc.value = 'false'
# Include Restricted Data
param_include_restricted = arcpy.Parameter(
displayName='Include Restricted Data',
name='include_restricted',
datatype='GPBoolean',
parameterType='Required',
direction='Input')
param_include_restricted.value = 'false'
## Include Other Dataset Types
#param_include_other = arcpy.Parameter(
# displayName='Include Other Dataset Types',
# name='include_other',
# datatype='GPBoolean',
# parameterType='Required',
# direction='Input')
#param_include_other.value = 'false'
# Output Zip File Name
param_output_zip = arcpy.Parameter(
displayName='Output Zip File Name',
name='output_zip',
datatype='GPString',
parameterType='Required',
direction='Input')
params = [param_geodatabase, param_jurisdictions_covered, param_include_cdc, param_include_restricted,
param_output_zip] # param_include_other,
return params
def isLicensed(self):
"""Set whether tool is licensed to execute."""
return True
def updateParameters(self, parameters):
"""Modify the values and properties of parameters before internal validation is performed. This method is
called whenever a parameter has been changed."""
# build list of jurisdictions
# exclude Atlantic Canadian jurisdictions because they are lumped as AC
# exclude Canada because it is a special juridiction that does have polygons in JurisdictionBufferFull
if parameters[0].altered and parameters[0].value:
param_geodatabase = parameters[0].valueAsText
jur_list = []
with arcpy.da.SearchCursor(param_geodatabase + '/Jurisdiction', ['JurisdictionName'],
"JurisdictionAbbreviation NOT IN ('NL', 'NS', 'NB', 'PE', 'NF', 'LB')",
sql_clause=(None,'ORDER BY JurisdictionName')) as cursor:
for row in EBARUtils.searchCursor(cursor):
jur_list.append(row['JurisdictionName'])
if len(jur_list) > 0:
del row
parameters[1].filter.list = jur_list
return
def updateMessages(self, parameters):
"""Modify the messages created by internal validation for each tool parameter. This method is called
after internal validation."""
return
def execute(self, parameters, messages):
"""The source code of the tool."""
return
# class FlagBadDataUsingRange(object):
# def __init__(self):
# """Define the tool (tool name is the name of the class)."""
# self.label = 'Flag Bad Data Using Range'
# self.description = 'Use reviewed range to identify and flag bad input data'
# self.canRunInBackground = True
# def getParameterInfo(self):
# """Define parameter definitions"""
# # Geodatabase
# param_geodatabase = arcpy.Parameter(
# displayName='Geodatabase',
# name='geodatabase',
# datatype='DEWorkspace',
# parameterType='Required',
# direction='Input')
# param_geodatabase.filter.list = ['Local Database', 'Remote Database']
# # Range Map ID
# param_range_map_id = arcpy.Parameter(
# displayName='Range Map ID',
# name='range_map_id',
# datatype='GPLong',
# parameterType='Required',
# direction='Input')
# params = [param_geodatabase, param_range_map_id]
# return params
# def isLicensed(self):
# """Set whether tool is licensed to execute."""
# return True
# def updateParameters(self, parameters):
# """Modify the values and properties of parameters before internal validation is performed. This method is
# called whenever a parameter has been changed."""
# return
# def updateMessages(self, parameters):
# """Modify the messages created by internal validation for each tool parameter. This method is called
# after internal validation."""
# return
# def execute(self, parameters, messages):
# """The source code of the tool."""
# fbdur = FlagBadDataUsingRangeTool.FlagBadDataUsingRangeTool()
# fbdur.runFlagBadDataUsingRangeTool(parameters, messages)
# return