#>
<\/img> #> <\/div>"},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_metric.html","id":null,"dir":"Reference","previous_headings":"","what":"Add a metric layer with custom symbology to a map. — map_metric","title":"Add a metric layer with custom symbology to a map. — map_metric","text":"function adds metric layer custom symbology leaflet map. allows specify custom parameters Web Map Service (WMS) request, apply CQL (Common Query Language) filter, provide custom SLD (Styled Layer Descriptor) body styling layer. Additionally, can specify data axis display map.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_metric.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Add a metric layer with custom symbology to a map. — map_metric","text":"","code":"map_metric( map, wms_params = params_wms()$metric, cql_filter = \"\", sld_body = \"\", data_axis )"},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_metric.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Add a metric layer with custom symbology to a map. — map_metric","text":"map leaflet map object metric layer added. wms_params list containing WMS parameters metric layer. provided, default parameters retrieved using params_wms function. cql_filter character string representing CQL filter apply metric layer. sld_body character string representing SLD (Styled Layer Descriptor) body custom styling metric layer. data_axis data axis display map.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_metric.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Add a metric layer with custom symbology to a map. — map_metric","text":"leaflet map object metric layer added.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_metric.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Add a metric layer with custom symbology to a map. — map_metric","text":"","code":"library(leaflet) library(dplyr) library(sf) # Create init bassin map map_bassin <- map_init_bassins(bassins_data = bassin_hydrographique, id_logo_ign_remonterletemps = \"logo_ign_remonterletemps\") # simulate bassin selected selected_bassin <- bassin_hydrographique # get centroid coordinate (in shiny see leaflet mapid_shape_click) centre <- sf::st_centroid(selected_bassin) #> Warning: st_centroid assumes attributes are constant over geometries centre_coord <- as.data.frame(st_coordinates(centre)) %>% rename(\"lng\" = X, \"lat\" = Y) # map region map_region <- map_add_regions_in_bassin(map = map_bassin, bassins_data = bassin_hydrographique, bassin_click = centre_coord, regions_data = region_hydrographique) # simulate selected region selected_region <- region_hydrographique # get centroid coordinate (in shiny see leaflet mapid_shape_click) centre_region <- sf::st_centroid(selected_bassin) #> Warning: st_centroid assumes attributes are constant over geometries centre_region_coord <- as.data.frame(st_coordinates(centre_region)) %>% rename(\"lng\" = X, \"lat\" = Y) centre_region_coord$id <- 11 # map the element in the region clicked map <- map_region_clicked(map = map_region, region_click = centre_region_coord, selected_region_feature = selected_region, regions = region_hydrographique) #> Error: la connexion au serveur sur le socket « /var/run/postgresql/.s.PGSQL.5432 » a échoué : No such file or directory #> \tLe serveur est-il actif localement et accepte-t-il les connexions sur ce socket ? map #> Error in eval(expr, envir, enclos): objet 'map' introuvable # build geoserver WMS filter cql_filter=paste0(\"gid_region=\", selected_region[[\"gid\"]]) # build geoserver SLD symbology sld_body <- sld_get_style(breaks = sld_get_quantile_metric( selected_region_id = selected_region[[\"gid\"]], selected_metric = \"active_channel_width\"), colors = sld_get_quantile_colors( quantile_breaks = sld_get_quantile_metric( selected_region_id = selected_region[[\"gid\"]], selected_metric = \"active_channel_width\")), metric = \"active_channel_width\") #> Error in h(simpleError(msg, call)): erreur d'�valuation de l'argument 'conn' lors de la s�lection d'une m�thode pour la fonction 'dbGetQuery' : la connexion au serveur sur le socket « /var/run/postgresql/.s.PGSQL.5432 » a échoué : No such file or directory #> \tLe serveur est-il actif localement et accepte-t-il les connexions sur ce socket ? # Network axis by region network_region_axis <- network_axis %>% filter(gid_region == selected_region[[\"gid\"]]) # Add metric with quantile symbology # wms_params = params_wms()$metric_basic with sld_body = NULL for default blue style$ map_metric <- map_metric(map = map, wms_params = params_wms()$metric, cql_filter = cql_filter, sld_body = sld_body, data_axis = network_region_axis) #> Error in eval(expr, envir, enclos): objet 'sld_body' introuvable map_metric #> function (map, wms_params = params_wms()$metric, cql_filter = \"\", #> sld_body = \"\", data_axis) #> { #> map %>% clearGroup(params_map_group()[[\"axis\"]]) %>% clearGroup(params_map_group()[[\"metric\"]]) %>% #> map_wms_metric(wms_params = wms_params, cql_filter = cql_filter, #> sld_body = sld_body) %>% map_axis(data_axis = data_axis) #> } #>
#> "},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_region_clicked.html","id":null,"dir":"Reference","previous_headings":"","what":"Update Leaflet Map for a Clicked Region — map_region_clicked","title":"Update Leaflet Map for a Clicked Region — map_region_clicked","text":"function updates existing Leaflet map region clicked, displaying region overlayers.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_region_clicked.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Update Leaflet Map for a Clicked Region — map_region_clicked","text":"","code":"map_region_clicked(map, region_click, selected_region_feature, regions_data)"},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_region_clicked.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Update Leaflet Map for a Clicked Region — map_region_clicked","text":"map existing Leaflet map updated. region_click vector containing information clicked region. selected_region_feature sf data frame containing information selected region feature. regions_data sf data.frame hydrographic regions bassin selected.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_region_clicked.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Update Leaflet Map for a Clicked Region — map_region_clicked","text":"updated Leaflet map relevant layers information displayed.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_region_clicked.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Update Leaflet Map for a Clicked Region — map_region_clicked","text":"","code":"library(leaflet) library(dplyr) library(sf) # Create init bassin map map_bassin <- map_init_bassins(bassins_data = bassin_hydrographique, id_logo_ign_remonterletemps = \"logo_ign_remonterletemps\") # simulate bassin selected selected_bassin <- bassin_hydrographique # get centroid coordinate (in shiny see leaflet mapid_shape_click) centre <- sf::st_centroid(selected_bassin) #> Warning: st_centroid assumes attributes are constant over geometries centre_coord <- as.data.frame(st_coordinates(centre)) %>% rename(\"lng\" = X, \"lat\" = Y) # map region map_region <- map_add_regions_in_bassin(map = map_bassin, bassins_data = bassin_hydrographique, bassin_click = centre_coord, regions_data = region_hydrographique) # simulate selected region selected_region <- region_hydrographique # get centroid coordinate (in shiny see leaflet mapid_shape_click) centre_region <- sf::st_centroid(selected_bassin) #> Warning: st_centroid assumes attributes are constant over geometries centre_region_coord <- as.data.frame(st_coordinates(centre_region)) %>% rename(\"lng\" = X, \"lat\" = Y) centre_region_coord$id <- 11 # map the element in the region clicked map <- map_region_clicked(map = map_region, region_click = centre_region_coord, selected_region_feature = selected_region, regions_data = region_hydrographique) #> Error: la connexion au serveur sur le socket « /var/run/postgresql/.s.PGSQL.5432 » a échoué : No such file or directory #> \tLe serveur est-il actif localement et accepte-t-il les connexions sur ce socket ? map #> Error in eval(expr, envir, enclos): objet 'map' introuvable"},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_wms_metric.html","id":null,"dir":"Reference","previous_headings":"","what":"Map WMS metric — map_wms_metric","title":"Map WMS metric — map_wms_metric","text":"function adds WMS tiles metric data existing Leaflet map, allowing customization style filtering.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_wms_metric.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Map WMS metric — map_wms_metric","text":"","code":"map_wms_metric( map, wms_params = params_wms()$metric, cql_filter = \"\", sld_body = \"\" )"},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_wms_metric.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Map WMS metric — map_wms_metric","text":"map existing Leaflet map WMS tiles added. wms_params list WMS parameters. cql_filter CQL filter apply WMS request. sld_body custom SLD (Styled Layer Descriptor) body symbology customization.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_wms_metric.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Map WMS metric — map_wms_metric","text":"updated Leaflet map WMS tiles containing metric data added.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/map_wms_metric.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Map WMS metric — map_wms_metric","text":"","code":"if (FALSE) { # Used in map_metric() function, see full example in map_metric() documentation }"},{"path":"https://evs-gis.github.io/mapdoapp/reference/mod_explore.html","id":null,"dir":"Reference","previous_headings":"","what":"explore UI Function — mod_explore_ui","title":"explore UI Function — mod_explore_ui","text":"shiny Module.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/mod_explore.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"explore UI Function — mod_explore_ui","text":"","code":"mod_explore_ui(id)"},{"path":"https://evs-gis.github.io/mapdoapp/reference/mod_explore.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"explore UI Function — mod_explore_ui","text":"id shiny id","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/network_axis.html","id":null,"dir":"Reference","previous_headings":"","what":"network_axis — network_axis","title":"network_axis — network_axis","text":"Description.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/network_axis.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"network_axis — network_axis","text":"","code":"network_axis"},{"path":"https://evs-gis.github.io/mapdoapp/reference/network_axis.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"network_axis — network_axis","text":"data frame 69 rows 5 variables: fid integer64 axis integer64 toponyme character gid_region integer geom sfc_MULTILINESTRING,sfc","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/network_axis.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"network_axis — network_axis","text":"Source","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/network_dgo.html","id":null,"dir":"Reference","previous_headings":"","what":"network_dgo — network_dgo","title":"network_dgo — network_dgo","text":"Description.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/network_dgo.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"network_dgo — network_dgo","text":"","code":"network_dgo"},{"path":"https://evs-gis.github.io/mapdoapp/reference/network_dgo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"network_dgo — network_dgo","text":"data frame 573 rows 46 variables: fid integer axis numeric measure integer toponyme character strahler integer talweg_elevation_min numeric active_channel_width numeric natural_corridor_width numeric connected_corridor_width numeric valley_bottom_width numeric talweg_slope numeric floodplain_slope numeric water_channel numeric gravel_bars numeric natural_open numeric forest numeric grassland numeric crops numeric diffuse_urban numeric dense_urban numeric infrastructures numeric active_channel numeric riparian_corridor numeric semi_natural numeric reversible numeric disconnected numeric built_environment numeric water_channel_pc numeric gravel_bars_pc numeric natural_open_pc numeric forest_pc numeric grassland_pc numeric crops_pc numeric diffuse_urban_pc numeric dense_urban_pc numeric infrastructures_pc numeric active_channel_pc numeric riparian_corridor_pc numeric semi_natural_pc numeric reversible_pc numeric disconnected_pc numeric built_environment_pc numeric sum_area numeric idx_confinement numeric gid_region integer geom sfc_MULTILINESTRING,sfc","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/network_dgo.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"network_dgo — network_dgo","text":"Source","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_map_group.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Parameters for Map Layer Groups — params_map_group","title":"Get Parameters for Map Layer Groups — params_map_group","text":"function returns list parameters representing different map layer groups.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_map_group.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Get Parameters for Map Layer Groups — params_map_group","text":"","code":"params_map_group()"},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_map_group.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Get Parameters for Map Layer Groups — params_map_group","text":"list parameters including names groups \"BASSIN,\" \"REGION,\" \"SELECT_REGION,\" \"METRIC,\" \"AXIS,\" \"LEGEND,\" \"ROE\".","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_map_group.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Get Parameters for Map Layer Groups — params_map_group","text":"","code":"# all group available map_group_params <- params_map_group() # get specific group name map_metric_group <- params_map_group()$metric map_selected_region_group <- params_map_group()$select_region"},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_metrics_choice.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Choices for Metric Selection — params_metrics_choice","title":"Get Choices for Metric Selection — params_metrics_choice","text":"function returns list choices selecting metrics organized categories.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_metrics_choice.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Get Choices for Metric Selection — params_metrics_choice","text":"","code":"params_metrics_choice()"},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_metrics_choice.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Get Choices for Metric Selection — params_metrics_choice","text":"list choices selecting metric type.\"","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_metrics_choice.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Get Choices for Metric Selection — params_metrics_choice","text":"","code":"metric_choices <- params_metrics_choice()"},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_unit_area.html","id":null,"dir":"Reference","previous_headings":"","what":"Get a list of available unit areas. — params_unit_area","title":"Get a list of available unit areas. — params_unit_area","text":"function returns vector available unit areas respective labels.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_unit_area.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Get a list of available unit areas. — params_unit_area","text":"","code":"params_unit_area()"},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_unit_area.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Get a list of available unit areas. — params_unit_area","text":"named character vector containing unit areas labels.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_unit_area.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Get a list of available unit areas. — params_unit_area","text":"","code":"unit_areas <- params_unit_area() unit_areas[\"Hectares\"] #> Hectares #> \"hectare\""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_url_remonterletemps.html","id":null,"dir":"Reference","previous_headings":"","what":"get IGN remonterletemps url. — params_url_remonterletemps","title":"get IGN remonterletemps url. — params_url_remonterletemps","text":"function take longitude latitude build url go IGN remonterletemps website place.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_url_remonterletemps.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"get IGN remonterletemps url. — params_url_remonterletemps","text":"","code":"params_url_remonterletemps(lng = 6.869433, lat = 45.92369, zoom = 12)"},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_url_remonterletemps.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"get IGN remonterletemps url. — params_url_remonterletemps","text":"lng longitude. lat latitude. zoom zoom level.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_url_remonterletemps.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"get IGN remonterletemps url. — params_url_remonterletemps","text":"string url link.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_url_remonterletemps.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"get IGN remonterletemps url. — params_url_remonterletemps","text":"","code":"params_url_remonterletemps(lng=6.869433, lat=45.923690, zoom = 12) #> https://remonterletemps.ign.fr/comparer/basic?x=6.869433&y=45.92369&z=12&layer1=GEOGRAPHICALGRIDSYSTEMS.PLANIGNV2&layer2=ORTHOIMAGERY.ORTHOPHOTOS&mode=vSlider"},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_wms.html","id":null,"dir":"Reference","previous_headings":"","what":"Define Web Map Service (WMS) parameters for different map layers and basemaps. — params_wms","title":"Define Web Map Service (WMS) parameters for different map layers and basemaps. — params_wms","text":"function defines set WMS parameters various map layers basemaps. parameters include information layer name, URL WMS server, version, format, style, . parameters organized list, making easy configure access map display legend generation.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_wms.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Define Web Map Service (WMS) parameters for different map layers and basemaps. — params_wms","text":"","code":"params_wms()"},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_wms.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Define Web Map Service (WMS) parameters for different map layers and basemaps. — params_wms","text":"list containing WMS parameters different map layers basemaps.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/params_wms.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Define Web Map Service (WMS) parameters for different map layers and basemaps. — params_wms","text":"","code":"# Retrieve WMS parameters for a specific map layer wms_params <- params_wms() metric_wms_params <- wms_params$metric # Access specific WMS parameters metric_name <- metric_wms_params$name metric_url <- metric_wms_params$url"},{"path":"https://evs-gis.github.io/mapdoapp/reference/pipe.html","id":null,"dir":"Reference","previous_headings":"","what":"Pipe operator — %>%","title":"Pipe operator — %>%","text":"See magrittr::%>% details.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/pipe.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Pipe operator — %>%","text":"","code":"lhs %>% rhs"},{"path":"https://evs-gis.github.io/mapdoapp/reference/pipe.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Pipe operator — %>%","text":"lhs value magrittr placeholder. rhs function call using magrittr semantics.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/pipe.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Pipe operator — %>%","text":"result calling `rhs(lhs)`.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/region_hydrographique.html","id":null,"dir":"Reference","previous_headings":"","what":"region_hydrographique — region_hydrographique","title":"region_hydrographique — region_hydrographique","text":"Description.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/region_hydrographique.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"region_hydrographique — region_hydrographique","text":"","code":"region_hydrographique"},{"path":"https://evs-gis.github.io/mapdoapp/reference/region_hydrographique.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"region_hydrographique — region_hydrographique","text":"data frame 1 rows 7 variables: gid numeric cdregionhy character lbregionhy character cdbh character click logical opacity numeric geom sfc_MULTIPOLYGON,sfc","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/region_hydrographique.html","id":"source","dir":"Reference","previous_headings":"","what":"Source","title":"region_hydrographique — region_hydrographique","text":"Source","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/run_app.html","id":null,"dir":"Reference","previous_headings":"","what":"Run the Shiny Application — run_app","title":"Run the Shiny Application — run_app","text":"Run Shiny Application","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/run_app.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Run the Shiny Application — run_app","text":"","code":"run_app( onStart = NULL, options = list(), enableBookmarking = NULL, uiPattern = \"/\", ... )"},{"path":"https://evs-gis.github.io/mapdoapp/reference/run_app.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Run the Shiny Application — run_app","text":"onStart function called app actually run. needed shinyAppObj, since shinyAppDir case, global.R file can used purpose. options Named options passed runApp call (can following: \"port\", \"launch.browser\", \"host\", \"quiet\", \"display.mode\" \"test.mode\"). can also specify width height parameters provide hint embedding environment ideal height/width app. enableBookmarking Can one \"url\", \"server\", \"disable\". default value, NULL, respect setting previous calls enableBookmarking(). See enableBookmarking() information bookmarking app. uiPattern regular expression applied GET request determine whether ui used handle request. Note entire request path must match regular expression order match considered successful. ... arguments pass golem_opts. See `?golem::get_golem_options` details.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_quantile_colors.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Quantile Colors — sld_get_quantile_colors","title":"Get Quantile Colors — sld_get_quantile_colors","text":"function generates color palette based quantile breaks data mapping.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_quantile_colors.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Get Quantile Colors — sld_get_quantile_colors","text":"","code":"sld_get_quantile_colors(quantile_breaks)"},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_quantile_colors.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Quantile Colors — sld_get_quantile_colors","text":"quantile_breaks numeric vector containing quantile breaks.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_quantile_colors.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Get Quantile Colors — sld_get_quantile_colors","text":"character vector colors generated based quantile breaks.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_quantile_colors.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Get Quantile Colors — sld_get_quantile_colors","text":"","code":"# get quantiles from active_channel_width metric quantile_metrics <- sld_get_quantile_metric(selected_region_id = 11, selected_metric = \"active_channel_width\") #> Error in h(simpleError(msg, call)): erreur d'�valuation de l'argument 'conn' lors de la s�lection d'une m�thode pour la fonction 'dbGetQuery' : la connexion au serveur sur le socket « /var/run/postgresql/.s.PGSQL.5432 » a échoué : No such file or directory #> \tLe serveur est-il actif localement et accepte-t-il les connexions sur ce socket ? # get color from quantile quantile_colors <- sld_get_quantile_colors(quantile_breaks = quantile_metrics) #> Error in eval(expr, envir, enclos): objet 'quantile_metrics' introuvable quantile_colors #> Error in eval(expr, envir, enclos): objet 'quantile_colors' introuvable"},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_quantile_metric.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Quantile Metrics for a Selected Region — sld_get_quantile_metric","title":"Get Quantile Metrics for a Selected Region — sld_get_quantile_metric","text":"function calculates quantile metrics (Q1, Q2, Q3, Q4, Q5) selected metric within specified region.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_quantile_metric.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Get Quantile Metrics for a Selected Region — sld_get_quantile_metric","text":"","code":"sld_get_quantile_metric(selected_region_id, selected_metric)"},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_quantile_metric.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Quantile Metrics for a Selected Region — sld_get_quantile_metric","text":"selected_region_id ID selected region. selected_metric name selected metric.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_quantile_metric.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Get Quantile Metrics for a Selected Region — sld_get_quantile_metric","text":"numeric vector containing quantile metrics (Q1, Q2, Q3, Q4, Q5) selected metric within specified region.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_quantile_metric.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Get Quantile Metrics for a Selected Region — sld_get_quantile_metric","text":"","code":"# get quantiles from active_channel_width metric quantile_metrics <- sld_get_quantile_metric(selected_region_id = 11, selected_metric = \"active_channel_width\") #> Error in h(simpleError(msg, call)): erreur d'�valuation de l'argument 'conn' lors de la s�lection d'une m�thode pour la fonction 'dbGetQuery' : la connexion au serveur sur le socket « /var/run/postgresql/.s.PGSQL.5432 » a échoué : No such file or directory #> \tLe serveur est-il actif localement et accepte-t-il les connexions sur ce socket ? quantile_metrics #> Error in eval(expr, envir, enclos): objet 'quantile_metrics' introuvable"},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_style.html","id":null,"dir":"Reference","previous_headings":"","what":"Get Styled Layer Descriptor (SLD) for network metric layer — sld_get_style","title":"Get Styled Layer Descriptor (SLD) for network metric layer — sld_get_style","text":"function generates Styled Layer Descriptor (SLD) XML styling network metric layer based quantile breaks colors.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_style.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Get Styled Layer Descriptor (SLD) for network metric layer — sld_get_style","text":"","code":"sld_get_style(breaks, colors, metric)"},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_style.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get Styled Layer Descriptor (SLD) for network metric layer — sld_get_style","text":"breaks numeric vector containing quantile breaks. colors character vector colors generated based quantile breaks. metric name selected metric.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_style.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Get Styled Layer Descriptor (SLD) for network metric layer — sld_get_style","text":"character string containing SLD XML styling data visualization.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/sld_get_style.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Get Styled Layer Descriptor (SLD) for network metric layer — sld_get_style","text":"","code":"# get quantiles from active_channel_width metric quantile_metrics <- sld_get_quantile_metric(selected_region_id = 11, selected_metric = \"active_channel_width\") #> Error in h(simpleError(msg, call)): erreur d'�valuation de l'argument 'conn' lors de la s�lection d'une m�thode pour la fonction 'dbGetQuery' : la connexion au serveur sur le socket « /var/run/postgresql/.s.PGSQL.5432 » a échoué : No such file or directory #> \tLe serveur est-il actif localement et accepte-t-il les connexions sur ce socket ? # get color from quantile quantile_colors <- sld_get_quantile_colors(quantile_breaks = quantile_metrics) #> Error in eval(expr, envir, enclos): objet 'quantile_metrics' introuvable # create sld style sld_style <- sld_get_style(breaks = quantile_metrics, colors = quantile_colors, metric = \"active_channel_width\") #> Error in eval(expr, envir, enclos): objet 'quantile_metrics' introuvable sld_style #> Error in eval(expr, envir, enclos): objet 'sld_style' introuvable"},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_get_metric_name_value.html","id":null,"dir":"Reference","previous_headings":"","what":"Get a named vector of all the metric from the metric type from the params metric list. — utile_get_metric_name_value","title":"Get a named vector of all the metric from the metric type from the params metric list. — utile_get_metric_name_value","text":"function extracts metric names value metric type stored params metric list.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_get_metric_name_value.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Get a named vector of all the metric from the metric type from the params metric list. — utile_get_metric_name_value","text":"","code":"utile_get_metric_name_value(metric_type)"},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_get_metric_name_value.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get a named vector of all the metric from the metric type from the params metric list. — utile_get_metric_name_value","text":"metric_type character metric type.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_get_metric_name_value.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Get a named vector of all the metric from the metric type from the params metric list. — utile_get_metric_name_value","text":"named character vector metric names values.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_get_metric_name_value.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Get a named vector of all the metric from the metric type from the params metric list. — utile_get_metric_name_value","text":"","code":"metrics <- utile_get_metric_name_value(\"largeur\")"},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_get_metric_type.html","id":null,"dir":"Reference","previous_headings":"","what":"Get a named vector of metric types from the params metric list. — utile_get_metric_type","title":"Get a named vector of metric types from the params metric list. — utile_get_metric_type","text":"function extracts metric types list objects returns named vector metric type titles names metric type values values.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_get_metric_type.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Get a named vector of metric types from the params metric list. — utile_get_metric_type","text":"","code":"utile_get_metric_type(input_list)"},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_get_metric_type.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Get a named vector of metric types from the params metric list. — utile_get_metric_type","text":"input_list list objects object 'metric_type_title' field.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_get_metric_type.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Get a named vector of metric types from the params metric list. — utile_get_metric_type","text":"named character vector metric type titles names metric type values values.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_get_metric_type.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Get a named vector of metric types from the params metric list. — utile_get_metric_type","text":"","code":"metric_types <- utile_get_metric_type(params_metrics_choice())"},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_normalize_string.html","id":null,"dir":"Reference","previous_headings":"","what":"Normalize a string by removing spaces, accents, and special characters. — utile_normalize_string","title":"Normalize a string by removing spaces, accents, and special characters. — utile_normalize_string","text":"function takes input string normalizes removing spaces, accents, diacritics, special characters. converts string lowercase.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_normalize_string.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Utilisation","title":"Normalize a string by removing spaces, accents, and special characters. — utile_normalize_string","text":"","code":"utile_normalize_string(input_string)"},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_normalize_string.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Normalize a string by removing spaces, accents, and special characters. — utile_normalize_string","text":"input_string input string normalized.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_normalize_string.html","id":"valeur-de-retour","dir":"Reference","previous_headings":"","what":"Valeur de retour","title":"Normalize a string by removing spaces, accents, and special characters. — utile_normalize_string","text":"normalized string spaces, accents, special characters removed, lowercase.","code":""},{"path":"https://evs-gis.github.io/mapdoapp/reference/utile_normalize_string.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Exemples","title":"Normalize a string by removing spaces, accents, and special characters. — utile_normalize_string","text":"","code":"original_string <- \"Thïs is à sâmplè strîng with spèciál chàracters!\" normalized_string <- utile_normalize_string(original_string) cat(normalized_string) # \"thisisasamplestringwithspecialcharacters\" #> thisisasamplestringwithspecialcharacters"},{"path":"https://evs-gis.github.io/mapdoapp/news/index.html","id":"mapdoapp-development-version","dir":"Changelog","previous_headings":"","what":"mapdoapp (development version)","title":"mapdoapp (development version)","text":"Initial CRAN submission.","code":""}]