search for: services3

Displaying 6 results from an estimated 6 matches for "services3".

Did you mean: services
2025 Jun 02
1
Specifying a long string literal across several lines
...ste0()` to > > concatenate long URLs. If we were able to use `\` to > > separate the string across multiple lines, it would make the solution > > much nicer! > > It may be a matter of taste. To me the current form > > #' furl <- paste0( > #' "https://services3.arcgis.com/ZvidGQkLaDJxRSJ2/arcgis/rest/services/", > #' "PLACES_LocalData_for_BetterHealth/FeatureServer/0" > #' ) > #' > > would be actually clearer than say this: > > #' # FeatureLayer > #' furl <- > "https://services3.arcgi...
2025 Jun 02
2
Specifying a long string literal across several lines
...use `\` to > >> > separate the string across multiple lines, it would make the solution > >> > much nicer! > >> > >> It may be a matter of taste. To me the current form > >> > >> #' furl <- paste0( > >> #' "https://services3.arcgis.com/ZvidGQkLaDJxRSJ2/arcgis/rest/services/", > >> #' "PLACES_LocalData_for_BetterHealth/FeatureServer/0" > >> #' ) > >> #' > >> > >> would be actually clearer than say this: > >> > >> #' # Feature...
2025 Jun 02
2
Specifying a long string literal across several lines
...nate long URLs. If we were able to use `\` to >> > separate the string across multiple lines, it would make the solution >> > much nicer! >> >> It may be a matter of taste. To me the current form >> >> #' furl <- paste0( >> #' "https://services3.arcgis.com/ZvidGQkLaDJxRSJ2/arcgis/rest/services/", >> #' "PLACES_LocalData_for_BetterHealth/FeatureServer/0" >> #' ) >> #' >> >> would be actually clearer than say this: >> >> #' # FeatureLayer >> #' furl <- &g...
2025 Jun 02
1
Specifying a long string literal across several lines
...R CMD check notes I have to use `paste0()` to > concatenate long URLs. If we were able to use `\` to > separate the string across multiple lines, it would make the solution > much nicer! It may be a matter of taste. To me the current form #' furl <- paste0( #' "https://services3.arcgis.com/ZvidGQkLaDJxRSJ2/arcgis/rest/services/", #'?? "PLACES_LocalData_for_BetterHealth/FeatureServer/0" #' ) #' would be actually clearer than say this: #' # FeatureLayer #' furl <- "https://services3.arcgis.com/ZvidGQkLaDJxRSJ2/arcgis/rest/service...
2025 Jun 02
2
Specifying a long string literal across several lines
...t;>> separate the string across multiple lines, it would make the solution >>>>> much nicer! >>>> >>>> It may be a matter of taste. To me the current form >>>> >>>> #' furl <- paste0( >>>> #' "https://services3.arcgis.com/ZvidGQkLaDJxRSJ2/arcgis/rest/services/", >>>> #' "PLACES_LocalData_for_BetterHealth/FeatureServer/0" >>>> #' ) >>>> #' >>>> >>>> would be actually clearer than say this: >>>> >>&g...
2025 Jun 02
1
Specifying a long string literal across several lines
Tomas, Here is a good example of where this functionality would be useful: https://github.com/R-ArcGIS/arcgislayers/blob/2b29f4c254e7e5a1dadce8d4b0015a70dfae39d4/R/arc-open.R#L19-L56 In order to prevent R CMD check notes I have to use `paste0()` to concatenate long URLs. If we were able to use `\` to separate the string across multiple lines, it would make the solution much nicer! On Mon, Jun