We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MapServer
FeatureServer
MapServers are conceptually different than a FeatureServer. Their class should reflect this. Reprex from #55
library(arcgis) #> Attaching core arcgis packages: #> - {arcgisutils} v0.1.0 #> - {arcgislayers} v0.1.0 nhd <- file.path( "https://hydro.nationalmap.gov", "arcgis/rest/services", "NHDPlus_HR", "MapServer" ) (nhd_srv <- arc_open(nhd)) #> <FeatureServer <13 layers, 0 tables>> #> CRS: 3857 #> Capabilities: Data,Map,Query #> 0: NHDPlusGage (esriGeometryPoint) #> 1: NHDPlusSink (esriGeometryPoint) #> 2: NHDPoint (esriGeometryPoint) #> 3: NetworkNHDFlowline (esriGeometryPolyline) #> 4: NonNetworkNHDFlowline (esriGeometryPolyline) #> 5: FlowDirection (esriGeometryPolyline) #> 6: NHDPlusWall (esriGeometryPolyline) #> 7: NHDLine (esriGeometryPolyline) #> 8: NHDArea (esriGeometryPolygon) #> 9: NHDWaterbody (esriGeometryPolygon) #> 10: NHDPlusCatchment (esriGeometryPolygon) #> 11: NHDPlusBoundaryUnit (esriGeometryPolygon) #> 12: WBDHU12 (esriGeometryPolygon) class(nhd_srv) #> [1] "FeatureServer"
The text was updated successfully, but these errors were encountered:
4d5f683
Merge pull request #83 from R-ArcGIS/mapsrvr
c0df687
add support for mapservers. closes #57
arc_open()
JosiahParry
No branches or pull requests
MapServers are conceptually different than a FeatureServer. Their class should reflect this. Reprex from #55
The text was updated successfully, but these errors were encountered: