Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

config description added #2579

Merged
merged 2 commits into from
Nov 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 33 additions & 31 deletions mslib/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,37 +374,39 @@ class MSUIDefaultConfig:
}

config_descriptions = {
"filepicker_default": "Documentation Required",
"data_dir": "Documentation Required",
"predefined_map_sections": "Documentation Required",
"num_interpolation_points": "Documentation Required",
"num_labels": "Documentation Required",
"default_WMS": "Documentation Required",
"default_VSEC_WMS": "Documentation Required",
"default_LSEC_WMS": "Documentation Required",
"default_MSCOLAB": "Documentation Required",
"MSS_auth": "Documentation Required",
"MSCOLAB_auth_user_name": "Documentation Required",
"MSCOLAB_timeout": "Documentation Required",
"WMS_request_timeout": "Documentation Required",
"WMS_preload": "Documentation Required",
"wms_cache": "Documentation Required",
"wms_cache_max_size_bytes": "Documentation Required",
"wms_cache_max_age_seconds": "Documentation Required",
"wms_prefetch": "Documentation Required",
"locations": "Documentation Required",
"new_flighttrack_template": "Documentation Required",
"new_flighttrack_flightlevel": "Documentation Required",
"proxies": "Documentation Required",
"mscolab_server_url": "Documentation Required",
"mss_dir": "Documentation Required",
"gravatar_ids": "Documentation Required",
"export_plugins": "Documentation Required",
"import_plugins": "Documentation Required",
"layout": "Documentation Required",
"topview": "Documentation Required",
"sideview": "Documentation Required",
"linearview": "Documentation Required",
"filepicker_default": "Defines the type of file-picker to be used. Can be 'default', 'qt', or 'fs'",
"data_dir": "Directory where MSUI output files are stored",
"predefined_map_sections": "Dictionary containing predefined map sections with their settings",
"num_interpolation_points": "Number of interpolation points used for vertical cross section requests",
"num_labels": "Number of x-axis labels in the side view",
"default_WMS": "List of the URLs of default WMS servers",
"default_VSEC_WMS": "List of the URLs of default Vertical Section WMS servers",
"default_LSEC_WMS": "List of the URLs of default Linear Section WMS servers",
"default_MSCOLAB": "List of the URLs of default MSColab servers",
"MSS_auth": "Dictionary containing credentials for http auth",
"MSCOLAB_auth_user_name": "Username used for http auth",
"MSCOLAB_timeout": "Tuple specifying timeout for MSColab in seconds. First value is for connection,"
" second for reply",
"WMS_request_timeout": "Timeout of WMS Url request",
"WMS_preload": "List of WMS URLs to preload",
"wms_cache": "Path to WMS image cache directory",
"wms_cache_max_size_bytes": "Maximum size of the cache in bytes",
"wms_cache_max_age_seconds": "Maximum age of a cached file in seconds",
"wms_prefetch": "Dictionary configuring the prefetch behaviour of WMS",
"locations": "Dictionary providing geo-coordinates for predefined locations",
"new_flighttrack_template": "List of predefined location names used as a flight track template"
" when creating a new flight track",
"new_flighttrack_flightlevel": "Default flight level for waypoints inserted by the flighttrack template",
"proxies": "Proxy settings for network requests",
"mscolab_server_url": "URL of the MSColab server",
"mss_dir": "Directory path used for MSS", # ToDo is this needed or can be replaced by data_dir?
"gravatar_ids": "List of gravatar email ids to automatically fetch",
"export_plugins": "Dictionary of export plugins",
"import_plugins": "Dictionary of import plugins",
"layout": "Dictionary for layout of different views",
"topview": "Dictionary to make title, label, and ticklabel sizes for topview configurable",
"sideview": "Dictionary to make title, label, and ticklabel sizes for sideview configurable",
"linearview": "Dictionary to make title, label, and ticklabel sizes for linearview configurable",
}


Expand Down
Loading