{"id":916021,"date":"2020-07-07T14:00:13","date_gmt":"2020-07-07T21:00:13","guid":{"rendered":"https:\/\/www.esri.com\/arcgis-blog\/?post_type=blog&#038;p=916021"},"modified":"2020-12-16T09:01:41","modified_gmt":"2020-12-16T17:01:41","slug":"r-arcgis-bridge-meets-the-cloud-working-with-remote-data","status":"publish","type":"blog","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data","title":{"rendered":"R-ArcGIS Bridge Meets the Cloud: Working with Remote Data"},"author":7381,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"_acf_changed":false,"_searchwp_excluded":""},"categories":[23341],"tags":[],"industry":[],"product":[36551,36561],"class_list":["post-916021","blog","type-blog","status-publish","format-standard","hentry","category-analytics","product-arcgis-online","product-arcgis-pro"],"acf":{"short_description":"New developments to the R-ArcGIS bridge that enable seamless connection to remote data sources, enterprise authentication and more.","flexible_content":[{"acf_fc_layout":"content","content":"<p>The R-ArcGIS Bridge (a.k.a. the R bridge) is the R integration project that enables a seamless connection between ArcGIS Pro, and the R ecosystem. The R-ArcGIS Bridge opens up scientific data analysis workflows and pipelines that can leverage the analytical capabilities of the ArcGIS platform and niche data science packages of R language in tandem.<\/p>\n<p>Since its inception, the R-ArcGIS Bridge user base has grown to a whopping 36,000 downloads, as of writing this blog. In the past year, we have been receiving recurring questions that can be summarized with:<\/p>\n<p>&#8211; Does it work with Living Atlas?<br \/>\n&#8211; We have massive amounts data in our ArcGIS portal, can we use it without downloading?<\/p>\n<p>We announce new capabilities of the bridge that enable working with remote data sources, feature and image services, in addition to portal authentication functionalities that allow you to work with data that resides in a private portal. This blog summarizes some key new features and out-of-the-box features of <a href=\"https:\/\/r.esri.com\/assets\/arcgisbinding-vignette.html\">arcgisbinding<\/a>, R-ArcGIS Bridge&#8217;s R package, pertinent to working with remote data.<\/p>\n<p>Below is a workflow for the new and updated functions of <code>arcgisbinding<\/code> to leverage remote data and in this blog we will explore ways in which you can utilize the R-ArcGIS Bridge to its full capacity to leverage new and improved functionality.<\/p>\n"},{"acf_fc_layout":"image","image":{"ID":916401,"id":916401,"title":"Workflow","filename":"workflow-1.png","filesize":31182,"url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/workflow-1.png","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data\/workflow-5","alt":"Workflow for working with different data sources using the R-ArcGIS Bridge","author":"7381","description":"","caption":"Workflow for working with different data sources using the R-ArcGIS Bridge","name":"workflow-5","status":"inherit","uploaded_to":916021,"date":"2020-07-05 04:25:52","modified":"2020-07-05 04:26:32","menu_order":0,"mime_type":"image\/png","type":"image","subtype":"png","icon":"https:\/\/www.esri.com\/arcgis-blog\/wp-includes\/images\/media\/default.png","width":823,"height":649,"sizes":{"thumbnail":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/workflow-1-213x200.png","thumbnail-width":213,"thumbnail-height":200,"medium":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/workflow-1.png","medium-width":331,"medium-height":261,"medium_large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/workflow-1.png","medium_large-width":768,"medium_large-height":606,"large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/workflow-1.png","large-width":823,"large-height":649,"1536x1536":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/workflow-1.png","1536x1536-width":823,"1536x1536-height":649,"2048x2048":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/workflow-1.png","2048x2048-width":823,"2048x2048-height":649,"card_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/workflow-1-590x465.png","card_image-width":590,"card_image-height":465,"wide_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/workflow-1.png","wide_image-width":823,"wide_image-height":649}},"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<p><strong>The Improved arc.open() Function <\/strong><\/p>\n<p><code>arc.open<\/code> is the most frequently used function of the <code>arcgisbinding<\/code> package because it is the first function you need to retrieve any spatial data, vector or raster alike, whether it is in a local geodatabase or in a remote server. Inside R, this function creates an <code>arc.dataset-class<\/code> object that defines the spatial information and attribute information contained in the dataset. All you need for <code>arc.open<\/code> is the path to the spatial data that you would like to bring into R.<\/p>\n<p>Assume you would like to bring in ACS population variables at the tract-level in as an R data frame.<\/p>\n"},{"acf_fc_layout":"content","content":"<p>All you need is to reference the URL for the feature service from <code>arc.open<\/code> and the function will make a call to this feature service and bring in the data definition. Here the URL for this feature service is <code>https:\/\/services.arcgis.com\/P3ePLMYs2RVChkJx\/arcgis\/rest\/<\/code><br \/>\n<code>services\/ACS_Total_Population_Boundaries\/FeatureServer\/2<\/code>. <\/p>\n<p>You can bring this data in by simply calling <code>arc.open<\/code> on the URL. The code snippet above makes a call to the REST API and creates a definition of this dataset. Next, you can bring this feature service into R as a spatial data frame by simply calling <code>arc.select<\/code> on this data definition. This is the same function you would use for local data. <\/p>\n<p>The new and improved <code>arc.open<\/code> allows you to interact with remote data sources with ease and opens up your R analysis to the wealth of spatial and space-time data maintained and curated by the ArcGIS community.<\/p>\n<p>The ACS feature service is publicly available and getting this data into an R dataframe is a direct call to the feature service from <code>arc.open<\/code>. What if you have private, password-protected, feature and image services in a private portal? The next sections will elaborate how.<\/p>\n<p><strong>Accessing Protected Data in Private Portals<\/strong><\/p>\n<p>Not all data can be made publicly available due to the sensitivity of the data and\/or privacy concerns pertaining to the data source. If you are working with such data and would like to have the seamless and effortless integration described above, this section is for you! Accessing data in your private portal is as easy as 1-2-3.<\/p>\n<p>1. In ArcGIS Pro login to the portal that you need<\/p>\n"},{"acf_fc_layout":"image","image":{"ID":916311,"id":916311,"title":"1_Connect_to_Portal","filename":"1_Connect_to_Portal.png","filesize":5353,"url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/1_Connect_to_Portal.png","link":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data\/1_connect_to_portal","alt":"","author":"7381","description":"","caption":"","name":"1_connect_to_portal","status":"inherit","uploaded_to":916021,"date":"2020-07-05 03:05:00","modified":"2020-07-05 03:05:00","menu_order":0,"mime_type":"image\/png","type":"image","subtype":"png","icon":"https:\/\/www.esri.com\/arcgis-blog\/wp-includes\/images\/media\/default.png","width":476,"height":378,"sizes":{"thumbnail":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/1_Connect_to_Portal-213x200.png","thumbnail-width":213,"thumbnail-height":200,"medium":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/1_Connect_to_Portal.png","medium-width":329,"medium-height":261,"medium_large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/1_Connect_to_Portal.png","medium_large-width":476,"medium_large-height":378,"large":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/1_Connect_to_Portal.png","large-width":476,"large-height":378,"1536x1536":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/1_Connect_to_Portal.png","1536x1536-width":476,"1536x1536-height":378,"2048x2048":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/1_Connect_to_Portal.png","2048x2048-width":476,"2048x2048-height":378,"card_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/1_Connect_to_Portal.png","card_image-width":476,"card_image-height":378,"wide_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/1_Connect_to_Portal.png","wide_image-width":476,"wide_image-height":378}},"image_position":"center","orientation":"horizontal","hyperlink":""},{"acf_fc_layout":"content","content":"<p>2. Use <code>arc.check_portal()<\/code> to make sure the R-ArcGIS Bridge recognizes the sign in to the portal<\/p>\n<p>3. Use <code>arc.open<\/code> on the feature service\/image service URL to bring it into R<\/p>\n<p>After these steps you can access your data that resides in your active portal. The process of reaching private remote data using the R-ArcGIS Bridge is summarized in the video below:<\/p>\n"},{"acf_fc_layout":"youtube","start_time":"0","end_time":"","youtube_video_url":"<iframe title=\"Working with Remote Data Using R-ArcGIS Bridge\" width=\"640\" height=\"360\" src=\"https:\/\/www.youtube.com\/embed\/i1EkePUvjAs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>"},{"acf_fc_layout":"content","content":"<p><strong>Private Data on Multiple Portals: Enter arc.portal_connect()<\/strong><\/p>\n<p>Lastly, you might be building an R script that consumes remote data from multiple portals. Note that only one portal can be active in ArcGIS Pro, at a time. We developed the new R-ArcGIS Bridge function <code>arc.portal_connect()<\/code> to connect to multiple portals. <\/p>\n<p><code>arc.portal_connect()<\/code> can connect to any inactive portal added to the ArcGIS Pro instance. In the example above, <em>devext<\/em> is a portal that is inactive but is in the list of portals in ArcGIS Pro. If you needed data from this portal in addition to data from the active portal, you can sign on to it in your R instance simply with:<\/p>\n<p><code>arc.portal_connect('https:\/\/devext.arcgis.com\/', username, password)<\/code><\/p>\n<p>In the code snippet above, you would need to replace the username and password with your credentials, and you would be on your way to consuming remote data from multiple portals.<\/p>\n<p><strong>Conclusion<\/strong><\/p>\n<p>The R-ArcGIS Bridge now works seamlessly with remote data sources whether they are public or reside in private portals. This development opens up your R and ArcGIS analysis to an ocean of curated, community-driven data. We are excited to see what you will do with this new functionality and are always excited to hear your needs of the R-ArcGIS Bridge.<\/p>\n<p>Learn more about the R-ArcGIS Bridge on our <a href=\"https:\/\/bit.ly\/2VvHpP9\">product page<\/a> and let us know of any feedback you may have on <a href=\"https:\/\/community.esri.com\/groups\/rstats\">our GeoNet page<\/a>. <\/p>\n"}],"authors":[{"ID":7381,"user_firstname":"Orhun","user_lastname":"Aydin","nickname":"orhun7","user_nicename":"orhun7","display_name":"Orhun Aydin","user_email":"OAydin@esri.com","user_url":"","user_registered":"2018-03-21 18:21:16","user_description":"Orhun is a senior researcher for the Spatial Statistics team. His role at ESRI includes conducting applied and theoretical research into spatial and spatio-temporal machine learning methods, maintaining and adding functionality to the R-ArcGIS Bridge, and creation of educational resources such as learn lessons. He is also a member of the virtual ESRI Science Team where he works on spatial data science applications for solving problems pertaining to Earth systems. In addition to his role at ESRI, Orhun serves as a lecturer at University of Southern California's Spatial Sciences Institute. He holds a Masters and a PhD in Geostatistics, and a PhD minor in Geology from Stanford University's School of Earth, Energy and Environmental Sciences.","user_avatar":"<img data-del=\"avatar\" src='https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/Aydin-3-213x200.jpg' class='avatar pp-user-avatar avatar-96 photo ' height='96' width='96'\/>"}],"related_articles":"","card_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/banner-1.png","wide_image":false},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v25.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>R-ArcGIS Bridge Meets the Cloud: Working with Remote Data<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"R-ArcGIS Bridge Meets the Cloud: Working with Remote Data\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data\" \/>\n<meta property=\"og:site_name\" content=\"ArcGIS Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/esrigis\/\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-16T17:01:41+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@ESRI\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data\"},\"author\":{\"name\":\"Orhun Aydin\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/1cebee6303de907069dda9760adde1a5\"},\"headline\":\"R-ArcGIS Bridge Meets the Cloud: Working with Remote Data\",\"datePublished\":\"2020-07-07T21:00:13+00:00\",\"dateModified\":\"2020-12-16T17:01:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data\"},\"wordCount\":9,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"articleSection\":[\"Analytics\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data\",\"name\":\"R-ArcGIS Bridge Meets the Cloud: Working with Remote Data\",\"isPartOf\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\"},\"datePublished\":\"2020-07-07T21:00:13+00:00\",\"dateModified\":\"2020-12-16T17:01:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.esri.com\/arcgis-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"R-ArcGIS Bridge Meets the Cloud: Working with Remote Data\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#website\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"name\":\"ArcGIS Blog\",\"description\":\"Get insider info from Esri product teams\",\"publisher\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#organization\",\"name\":\"Esri\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"contentUrl\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png\",\"width\":400,\"height\":400,\"caption\":\"Esri\"},\"image\":{\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/esrigis\/\",\"https:\/\/x.com\/ESRI\",\"https:\/\/www.linkedin.com\/company\/5311\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/1cebee6303de907069dda9760adde1a5\",\"name\":\"Orhun Aydin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/Aydin-3-213x200.jpg\",\"contentUrl\":\"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/Aydin-3-213x200.jpg\",\"caption\":\"Orhun Aydin\"},\"description\":\"Orhun is a senior researcher for the Spatial Statistics team. His role at ESRI includes conducting applied and theoretical research into spatial and spatio-temporal machine learning methods, maintaining and adding functionality to the R-ArcGIS Bridge, and creation of educational resources such as learn lessons. He is also a member of the virtual ESRI Science Team where he works on spatial data science applications for solving problems pertaining to Earth systems. In addition to his role at ESRI, Orhun serves as a lecturer at University of Southern California's Spatial Sciences Institute. He holds a Masters and a PhD in Geostatistics, and a PhD minor in Geology from Stanford University's School of Earth, Energy and Environmental Sciences.\",\"sameAs\":[\"https:\/\/x.com\/orhun_sow\"],\"url\":\"https:\/\/www.esri.com\/arcgis-blog\/author\/orhun7\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"R-ArcGIS Bridge Meets the Cloud: Working with Remote Data","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data","og_locale":"en_US","og_type":"article","og_title":"R-ArcGIS Bridge Meets the Cloud: Working with Remote Data","og_url":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data","og_site_name":"ArcGIS Blog","article_publisher":"https:\/\/www.facebook.com\/esrigis\/","article_modified_time":"2020-12-16T17:01:41+00:00","twitter_card":"summary_large_image","twitter_site":"@ESRI","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data#article","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data"},"author":{"name":"Orhun Aydin","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/1cebee6303de907069dda9760adde1a5"},"headline":"R-ArcGIS Bridge Meets the Cloud: Working with Remote Data","datePublished":"2020-07-07T21:00:13+00:00","dateModified":"2020-12-16T17:01:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data"},"wordCount":9,"commentCount":0,"publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"articleSection":["Analytics"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data","url":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data","name":"R-ArcGIS Bridge Meets the Cloud: Working with Remote Data","isPartOf":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#website"},"datePublished":"2020-07-07T21:00:13+00:00","dateModified":"2020-12-16T17:01:41+00:00","breadcrumb":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.esri.com\/arcgis-blog\/products\/arcgis-pro\/analytics\/r-arcgis-bridge-meets-the-cloud-working-with-remote-data#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.esri.com\/arcgis-blog\/"},{"@type":"ListItem","position":2,"name":"R-ArcGIS Bridge Meets the Cloud: Working with Remote Data"}]},{"@type":"WebSite","@id":"https:\/\/www.esri.com\/arcgis-blog\/#website","url":"https:\/\/www.esri.com\/arcgis-blog\/","name":"ArcGIS Blog","description":"Get insider info from Esri product teams","publisher":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.esri.com\/arcgis-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.esri.com\/arcgis-blog\/#organization","name":"Esri","url":"https:\/\/www.esri.com\/arcgis-blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","contentUrl":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2018\/04\/Esri.png","width":400,"height":400,"caption":"Esri"},"image":{"@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/esrigis\/","https:\/\/x.com\/ESRI","https:\/\/www.linkedin.com\/company\/5311\/"]},{"@type":"Person","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/1cebee6303de907069dda9760adde1a5","name":"Orhun Aydin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.esri.com\/arcgis-blog\/#\/schema\/person\/image\/","url":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/Aydin-3-213x200.jpg","contentUrl":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2020\/07\/Aydin-3-213x200.jpg","caption":"Orhun Aydin"},"description":"Orhun is a senior researcher for the Spatial Statistics team. His role at ESRI includes conducting applied and theoretical research into spatial and spatio-temporal machine learning methods, maintaining and adding functionality to the R-ArcGIS Bridge, and creation of educational resources such as learn lessons. He is also a member of the virtual ESRI Science Team where he works on spatial data science applications for solving problems pertaining to Earth systems. In addition to his role at ESRI, Orhun serves as a lecturer at University of Southern California's Spatial Sciences Institute. He holds a Masters and a PhD in Geostatistics, and a PhD minor in Geology from Stanford University's School of Earth, Energy and Environmental Sciences.","sameAs":["https:\/\/x.com\/orhun_sow"],"url":"https:\/\/www.esri.com\/arcgis-blog\/author\/orhun7"}]}},"text_date":"July 7, 2020","author_name":"Orhun Aydin","author_page":"https:\/\/www.esri.com\/arcgis-blog\/author\/orhun7","custom_image":"https:\/\/www.esri.com\/arcgis-blog\/app\/uploads\/2025\/08\/Newsroom-Keyart-Wide-1920-x-1080.jpg","primary_product":"ArcGIS Pro","tag_data":[],"category_data":[{"term_id":23341,"name":"Analytics","slug":"analytics","term_group":0,"term_taxonomy_id":23341,"taxonomy":"category","description":"","parent":0,"count":1329,"filter":"raw"}],"product_data":[{"term_id":36551,"name":"ArcGIS Online","slug":"arcgis-online","term_group":0,"term_taxonomy_id":36551,"taxonomy":"product","description":"","parent":0,"count":2427,"filter":"raw"},{"term_id":36561,"name":"ArcGIS Pro","slug":"arcgis-pro","term_group":0,"term_taxonomy_id":36561,"taxonomy":"product","description":"","parent":0,"count":2037,"filter":"raw"}],"primary_product_link":"https:\/\/www.esri.com\/arcgis-blog\/?s=#&products=arcgis-pro","_links":{"self":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/916021","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog"}],"about":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/types\/blog"}],"author":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/users\/7381"}],"replies":[{"embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/comments?post=916021"}],"version-history":[{"count":0,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/blog\/916021\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/media?parent=916021"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/categories?post=916021"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/tags?post=916021"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/industry?post=916021"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/www.esri.com\/arcgis-blog\/wp-json\/wp\/v2\/product?post=916021"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}