We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45c6cad commit af35dd9Copy full SHA for af35dd9
1 file changed
utils/utils.py
@@ -78,6 +78,7 @@ def initialize_client(args):
78
"maxi": 1,
79
"atl03_geo_fields": [],
80
"atl03_ph_fields": [],
81
+ "samples": [],
82
"profile": True,
83
"verbose": True,
84
"timeout": 0,
@@ -119,6 +120,10 @@ def initialize_client(args):
119
120
if len(cfg['atl03_ph_fields']) > 0:
121
parms['atl03_ph_fields'] = cfg['atl03_ph_fields']
122
123
+ # Add Rasters to Sample
124
+ if len(cfg['samples']) > 0:
125
+ parms['samples'] = cfg['samples']
126
+
127
# Add ATL08 Classification
128
if len(cfg['atl08_class']) > 0:
129
parms['atl08_class'] = cfg['atl08_class']
0 commit comments