Home Forums Nazca Questions and Answers Mask layer management Reply To: Mask layer management

#5444
Ronald
Keymaster

Dear Chenhui,

For using a csv file to define mask layers:

# csv file content example 'my_layers.csv'
# (no spaces after the comma's)
# remove these comment lines
layer_name,layer,datatype,accuracy,origin,remark
name1,2,10,0.001,,
name2,5,0,0.001,,
name3,100,0,0.001,,
import nazca as nd
nd.load_layers(filename='my_layers.csv')
nd.show_layers()

Ronald