forked from theolivenbaum/kml-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.m
18 lines (18 loc) · 797 Bytes
/
README.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
if isempty(which('kml'))
disp(repmat('_',1,80))
disp(' _ ____ __ _ _____ _ _ ')
disp(' | |/ / \/ | | |_ _|__ ___| | |__ _____ __')
disp(' | '' <| |\/| | |__ | |/ _ \/ _ \ | ''_ \/ _ \ \ /')
disp(' |_|\_\_| |_|____| |_|\___/\___/_|_.__/\___/_\_\')
disp(sprintf('\n'));
disp(' Thanks for downloading the KML toolbox v1.4!');
disp(sprintf('\n'));
disp('For some cool examples on how to use the KML toolbox,');
disp(sprintf('please check the file RunTests.m located in the folder %s',pwd));
disp(repmat('_',1,80));
else
tmp = getpref('kmltoolbox','ShowDisclaimer',true);
setpref('kmltoolbox','ShowDisclaimer',true);
display(kml);
setpref('kmltoolbox','ShowDisclaimer',tmp);
end