Why shapefiles created with sf package (in R) do not display same CRS in ArcMap? Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Extract values from raster using point data with buffer in RCRS Projection problems prevent spatial merge in RGetting “Error in par(pin = p)” when using spTransform in Rhow to make buffer around shapefile in RNumerical Vertex Edit Error: latitude or longitude exceeded limitsCompute a distance matrix in R with geosphereProblem using 'masker' while plotting KDE - RUnits of specific CRS projection?Transforming map with “custom” CRS to WGS84?gIntersection error: linearRing not created

Geometric mean and geometric standard deviation

Unexpected result with right shift after bitwise negation

How should I respond to a player wanting to catch a sword between their hands?

Fishing simulator

What to do with post with dry rot?

Is there folklore associating late breastfeeding with low intelligence and/or gullibility?

Blender game recording at the wrong time

Am I ethically obligated to go into work on an off day if the reason is sudden?

Can I throw a sword that doesn't have the Thrown property at someone?

What's the difference between (size_t)-1 and ~0?

I'm having difficulty getting my players to do stuff in a sandbox campaign

Why is "Captain Marvel" translated as male in Portugal?

Do working physicists consider Newtonian mechanics to be "falsified"?

When communicating altitude with a '9' in it, should it be pronounced "nine hundred" or "niner hundred"?

Classification of bundles, Postnikov towers, obstruction theory, local coefficients

Complexity of many constant time steps with occasional logarithmic steps

How can I make names more distinctive without making them longer?

Passing functions in C++

How do I keep my slimes from escaping their pens?

How can players take actions together that are impossible otherwise?

What kind of display is this?

What items from the Roman-age tech-level could be used to deter all creatures from entering a small area?

What would be Julian Assange's expected punishment, on the current English criminal law?

How to colour the US map with Yellow, Green, Red and Blue to minimize the number of states with the colour of Green



Why shapefiles created with sf package (in R) do not display same CRS in ArcMap?



Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Extract values from raster using point data with buffer in RCRS Projection problems prevent spatial merge in RGetting “Error in par(pin = p)” when using spTransform in Rhow to make buffer around shapefile in RNumerical Vertex Edit Error: latitude or longitude exceeded limitsCompute a distance matrix in R with geosphereProblem using 'masker' while plotting KDE - RUnits of specific CRS projection?Transforming map with “custom” CRS to WGS84?gIntersection error: linearRing not created



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have created a polygon shapefile in ArcMap using 7 points(lat,lon) then read this shapefile into R to obtain the CRS. I then created a shape file in R using the sf package (and the 7 points) and used the CRS obtained from the ArcMap shapefile. When I bring the shapefile created in R into ArcMap I get a warning regarding different coordinate systems. Why would this happen?



My steps:



7 points (lon and lat) where point 1 = point 7 (closed loop). Create a polygon shapefile in ArcMap and display. Properties in ArcMap show : Geographic Coordinate System: GCS_North_American_1983 Datum: D_North_American_1983



In R I use rgdal to read in shapefile and obtain CRS



cashes <- rgdal::readOGR(dns="path",layer="shapefile") 
cashes@proj4string
This results in : "+proj=longlat +datum=NAD83 +no_defs +ellps=GRS80 +towgs84=0,0,0 "


Now I create the shapefile in R using the sf package (I could use %>%)



Rshapefile <- readxl::read_xlsx(path,sheet="cashes")
Rshapefile <- sf::st_as_sf(Rshapefile,coords=c("lon","lat"),crs="+proj=longlat +datum=NAD83 +no_defs +ellps=GRS80 +towgs84=0,0,0 ")
Rshapefile <- dplyr::summarize(Rshapefile,geometry = sf::st_combine(geometry))
Rshapefile <- sf::st_cast(Rshapefile,"POLYGON")

sf::st_write(Rshapefile,dns=path,layer="Rshapefile",driver="ESRI Shapefile")


I then bring this Rshapefile into ArcMap and the coordinate systems are different. When I view the properties in ArcMap they show: Geographic Coordinate System: GRS 1980(IUGG, 1980) Datum: D_unknown



Why is this? I must be doing something wrong but I can't figure out what!










share|improve this question









New contributor




andy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • I can't help you with this question, but thank you for including the references to the packages for each function.

    – Paul H
    Apr 8 at 14:16












  • Have you checked the CRS at each stage of manipulating Rshapefile after first assigning the CRS?

    – Simbamangu
    Apr 8 at 16:07











  • dns=path should be dsn=path. Not sure that fixes it but at least it makes your code run properly.

    – Spacedman
    Apr 8 at 18:09

















0















I have created a polygon shapefile in ArcMap using 7 points(lat,lon) then read this shapefile into R to obtain the CRS. I then created a shape file in R using the sf package (and the 7 points) and used the CRS obtained from the ArcMap shapefile. When I bring the shapefile created in R into ArcMap I get a warning regarding different coordinate systems. Why would this happen?



My steps:



7 points (lon and lat) where point 1 = point 7 (closed loop). Create a polygon shapefile in ArcMap and display. Properties in ArcMap show : Geographic Coordinate System: GCS_North_American_1983 Datum: D_North_American_1983



In R I use rgdal to read in shapefile and obtain CRS



cashes <- rgdal::readOGR(dns="path",layer="shapefile") 
cashes@proj4string
This results in : "+proj=longlat +datum=NAD83 +no_defs +ellps=GRS80 +towgs84=0,0,0 "


Now I create the shapefile in R using the sf package (I could use %>%)



Rshapefile <- readxl::read_xlsx(path,sheet="cashes")
Rshapefile <- sf::st_as_sf(Rshapefile,coords=c("lon","lat"),crs="+proj=longlat +datum=NAD83 +no_defs +ellps=GRS80 +towgs84=0,0,0 ")
Rshapefile <- dplyr::summarize(Rshapefile,geometry = sf::st_combine(geometry))
Rshapefile <- sf::st_cast(Rshapefile,"POLYGON")

sf::st_write(Rshapefile,dns=path,layer="Rshapefile",driver="ESRI Shapefile")


I then bring this Rshapefile into ArcMap and the coordinate systems are different. When I view the properties in ArcMap they show: Geographic Coordinate System: GRS 1980(IUGG, 1980) Datum: D_unknown



Why is this? I must be doing something wrong but I can't figure out what!










share|improve this question









New contributor




andy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • I can't help you with this question, but thank you for including the references to the packages for each function.

    – Paul H
    Apr 8 at 14:16












  • Have you checked the CRS at each stage of manipulating Rshapefile after first assigning the CRS?

    – Simbamangu
    Apr 8 at 16:07











  • dns=path should be dsn=path. Not sure that fixes it but at least it makes your code run properly.

    – Spacedman
    Apr 8 at 18:09













0












0








0








I have created a polygon shapefile in ArcMap using 7 points(lat,lon) then read this shapefile into R to obtain the CRS. I then created a shape file in R using the sf package (and the 7 points) and used the CRS obtained from the ArcMap shapefile. When I bring the shapefile created in R into ArcMap I get a warning regarding different coordinate systems. Why would this happen?



My steps:



7 points (lon and lat) where point 1 = point 7 (closed loop). Create a polygon shapefile in ArcMap and display. Properties in ArcMap show : Geographic Coordinate System: GCS_North_American_1983 Datum: D_North_American_1983



In R I use rgdal to read in shapefile and obtain CRS



cashes <- rgdal::readOGR(dns="path",layer="shapefile") 
cashes@proj4string
This results in : "+proj=longlat +datum=NAD83 +no_defs +ellps=GRS80 +towgs84=0,0,0 "


Now I create the shapefile in R using the sf package (I could use %>%)



Rshapefile <- readxl::read_xlsx(path,sheet="cashes")
Rshapefile <- sf::st_as_sf(Rshapefile,coords=c("lon","lat"),crs="+proj=longlat +datum=NAD83 +no_defs +ellps=GRS80 +towgs84=0,0,0 ")
Rshapefile <- dplyr::summarize(Rshapefile,geometry = sf::st_combine(geometry))
Rshapefile <- sf::st_cast(Rshapefile,"POLYGON")

sf::st_write(Rshapefile,dns=path,layer="Rshapefile",driver="ESRI Shapefile")


I then bring this Rshapefile into ArcMap and the coordinate systems are different. When I view the properties in ArcMap they show: Geographic Coordinate System: GRS 1980(IUGG, 1980) Datum: D_unknown



Why is this? I must be doing something wrong but I can't figure out what!










share|improve this question









New contributor




andy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I have created a polygon shapefile in ArcMap using 7 points(lat,lon) then read this shapefile into R to obtain the CRS. I then created a shape file in R using the sf package (and the 7 points) and used the CRS obtained from the ArcMap shapefile. When I bring the shapefile created in R into ArcMap I get a warning regarding different coordinate systems. Why would this happen?



My steps:



7 points (lon and lat) where point 1 = point 7 (closed loop). Create a polygon shapefile in ArcMap and display. Properties in ArcMap show : Geographic Coordinate System: GCS_North_American_1983 Datum: D_North_American_1983



In R I use rgdal to read in shapefile and obtain CRS



cashes <- rgdal::readOGR(dns="path",layer="shapefile") 
cashes@proj4string
This results in : "+proj=longlat +datum=NAD83 +no_defs +ellps=GRS80 +towgs84=0,0,0 "


Now I create the shapefile in R using the sf package (I could use %>%)



Rshapefile <- readxl::read_xlsx(path,sheet="cashes")
Rshapefile <- sf::st_as_sf(Rshapefile,coords=c("lon","lat"),crs="+proj=longlat +datum=NAD83 +no_defs +ellps=GRS80 +towgs84=0,0,0 ")
Rshapefile <- dplyr::summarize(Rshapefile,geometry = sf::st_combine(geometry))
Rshapefile <- sf::st_cast(Rshapefile,"POLYGON")

sf::st_write(Rshapefile,dns=path,layer="Rshapefile",driver="ESRI Shapefile")


I then bring this Rshapefile into ArcMap and the coordinate systems are different. When I view the properties in ArcMap they show: Geographic Coordinate System: GRS 1980(IUGG, 1980) Datum: D_unknown



Why is this? I must be doing something wrong but I can't figure out what!







coordinate-system arcmap r sf






share|improve this question









New contributor




andy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




andy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited Apr 8 at 14:20









Kadir Şahbaz

4,69221531




4,69221531






New contributor




andy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Apr 8 at 13:54









andyandy

1




1




New contributor




andy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





andy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






andy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • I can't help you with this question, but thank you for including the references to the packages for each function.

    – Paul H
    Apr 8 at 14:16












  • Have you checked the CRS at each stage of manipulating Rshapefile after first assigning the CRS?

    – Simbamangu
    Apr 8 at 16:07











  • dns=path should be dsn=path. Not sure that fixes it but at least it makes your code run properly.

    – Spacedman
    Apr 8 at 18:09

















  • I can't help you with this question, but thank you for including the references to the packages for each function.

    – Paul H
    Apr 8 at 14:16












  • Have you checked the CRS at each stage of manipulating Rshapefile after first assigning the CRS?

    – Simbamangu
    Apr 8 at 16:07











  • dns=path should be dsn=path. Not sure that fixes it but at least it makes your code run properly.

    – Spacedman
    Apr 8 at 18:09
















I can't help you with this question, but thank you for including the references to the packages for each function.

– Paul H
Apr 8 at 14:16






I can't help you with this question, but thank you for including the references to the packages for each function.

– Paul H
Apr 8 at 14:16














Have you checked the CRS at each stage of manipulating Rshapefile after first assigning the CRS?

– Simbamangu
Apr 8 at 16:07





Have you checked the CRS at each stage of manipulating Rshapefile after first assigning the CRS?

– Simbamangu
Apr 8 at 16:07













dns=path should be dsn=path. Not sure that fixes it but at least it makes your code run properly.

– Spacedman
Apr 8 at 18:09





dns=path should be dsn=path. Not sure that fixes it but at least it makes your code run properly.

– Spacedman
Apr 8 at 18:09










0






active

oldest

votes












Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "79"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);






andy is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318124%2fwhy-shapefiles-created-with-sf-package-in-r-do-not-display-same-crs-in-arcmap%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








andy is a new contributor. Be nice, and check out our Code of Conduct.









draft saved

draft discarded


















andy is a new contributor. Be nice, and check out our Code of Conduct.












andy is a new contributor. Be nice, and check out our Code of Conduct.











andy is a new contributor. Be nice, and check out our Code of Conduct.














Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318124%2fwhy-shapefiles-created-with-sf-package-in-r-do-not-display-same-crs-in-arcmap%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

Crop image to path created in TikZ? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Crop an inserted image?TikZ pictures does not appear in posterImage behind and beyond crop marks?Tikz picture as large as possible on A4 PageTransparency vs image compression dilemmaHow to crop background from image automatically?Image does not cropTikzexternal capturing crop marks when externalizing pgfplots?How to include image path that contains a dollar signCrop image with left size given

QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output