-
Notifications
You must be signed in to change notification settings - Fork 5
/
comparison_app
24 lines (17 loc) · 954 Bytes
/
comparison_app
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// released under Open Source GPL License Copyright © 2023 Ka Hei Chow
// ######################################### //
// ###### Map Comparison ###### //
// ###### Tool for Climate Risk ###### //
// ######################################### //
// import modules
var app = require('users/pinkychow1010/WB_IntraUrban:map_comparison_interface'); // app framework
var config = require('users/pinkychow1010/WB_IntraUrban:map_comparison_config'); // app key params
// construct app with predefined parameters
app.comparison_app(
config.layer_dict, // dictionary for retrieving gridded data layers
config.info_dict, // dictionary for data layer descriptions
config.url_dict, // dictionary for data layer project details URL
config.log_dict, // dictionary for log visualization (binary)
config.legend_dict, // dictionary for legend text
config.color_dict // dictionary for color maps
);