UTM to latlong in R - with proj4Lambert projection with one or two standard parallels and proj4Huge...

How to run unit tests?

Is the tritone (A4 / d5) still banned in Roman Catholic music?

Multiple null checks in Java 8

Are there any rules for handling distractions whilst performing skill checks?

Partial derivative with respect to three variables

Was the Soviet N1 really capable of sending 9.6 GB/s of telemetry?

How do I make my single-minded character more interested in the main story?

Why write a book when there's a movie in my head?

SQL Server Service does not start automatically after system restart

Have the UK Conservatives lost the working majority and if so, what does this mean?

How do I avoid the "chosen hero" feeling?

Have any astronauts or cosmonauts died in space?

How do I add a strong "onion flavor" to the biryani (in restaurant style)?

How bad is a Computer Science course that doesn't teach Design Patterns?

Why is quixotic not Quixotic (a proper adjective)?

In the Lost in Space intro why was Dr. Smith actor listed as a special guest star?

Minimum Viable Product for RTS game?

How to know you are over-explaining and oversimplifying a subject?

Is it possible to detect 100% of SQLi with a simple regex?

Is it possible to narrate a novel in a faux-historical style without alienating the reader?

What is an explicit bijection in combinatorics?

Is Screenshot Time-tracking Common?

What does it mean for south of due west?

Can a Hydra make multiple opportunity attacks at once?



UTM to latlong in R - with proj4


Lambert projection with one or two standard parallels and proj4Huge differences between results for 7-param datum transformSlight translation with coordinate-transformation from Gauss-Kruger to WGS 84. Possible Reasons?Convert shapefile to LonLat (R)How to convert from a local coordinate system to UTM (and vice versa) using mathematical expressionCustom Projection in Proj4 has errors, what can I do to implement a 4 parameter transform?What are correct options for converting from state plane nad83 zone NNNN to lat lon in proj4/cs2cs?custom equal area projections with proj4Defining a user defined CRS to a layer in QGIS modeler and then reprojecting itTransforming Lat/long data to UTM --2 different UTMS













0















I have received a shapefile with measurement points to be analyzed, but no matter how I try, I can't find how to convert to lat lon. I suppose it would be good to know the projection but when I look into the file (with R and summary()) it says "Is projected: NA" and "proj4string : [NA]".



One measurement-point I know is close to São Paulo - Brasil with has x,y latlong = -23.5489, -46.6388 - Zone 23.



How can I find out how to convert this point (and many others) to lat lon?



I tried to follow the instructions of similar questions here, but to no avail.



library(proj4)
proj4string <- "+proj=utm +zone=23 +south +ellps=WGS84 +datum=WGS84 +units=m +no_defs "
# Source data
xy <- data.frame(x="333132,00", y="7394597,00", options("digits"=12))
xy
# Transformed data
pj <- project(xy, proj4string, inverse=TRUE)
pj
latlon <- data.frame(lat=pj$y, lon=pj$x)
print(latlon)









share|improve this question







New contributor




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





















  • What libraries are you using in R? Also, this resource could be of use: nceas.ucsb.edu/~frazier/RSpatialGuides/…

    – smiller
    20 secs ago


















0















I have received a shapefile with measurement points to be analyzed, but no matter how I try, I can't find how to convert to lat lon. I suppose it would be good to know the projection but when I look into the file (with R and summary()) it says "Is projected: NA" and "proj4string : [NA]".



One measurement-point I know is close to São Paulo - Brasil with has x,y latlong = -23.5489, -46.6388 - Zone 23.



How can I find out how to convert this point (and many others) to lat lon?



I tried to follow the instructions of similar questions here, but to no avail.



library(proj4)
proj4string <- "+proj=utm +zone=23 +south +ellps=WGS84 +datum=WGS84 +units=m +no_defs "
# Source data
xy <- data.frame(x="333132,00", y="7394597,00", options("digits"=12))
xy
# Transformed data
pj <- project(xy, proj4string, inverse=TRUE)
pj
latlon <- data.frame(lat=pj$y, lon=pj$x)
print(latlon)









share|improve this question







New contributor




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





















  • What libraries are you using in R? Also, this resource could be of use: nceas.ucsb.edu/~frazier/RSpatialGuides/…

    – smiller
    20 secs ago
















0












0








0








I have received a shapefile with measurement points to be analyzed, but no matter how I try, I can't find how to convert to lat lon. I suppose it would be good to know the projection but when I look into the file (with R and summary()) it says "Is projected: NA" and "proj4string : [NA]".



One measurement-point I know is close to São Paulo - Brasil with has x,y latlong = -23.5489, -46.6388 - Zone 23.



How can I find out how to convert this point (and many others) to lat lon?



I tried to follow the instructions of similar questions here, but to no avail.



library(proj4)
proj4string <- "+proj=utm +zone=23 +south +ellps=WGS84 +datum=WGS84 +units=m +no_defs "
# Source data
xy <- data.frame(x="333132,00", y="7394597,00", options("digits"=12))
xy
# Transformed data
pj <- project(xy, proj4string, inverse=TRUE)
pj
latlon <- data.frame(lat=pj$y, lon=pj$x)
print(latlon)









share|improve this question







New contributor




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












I have received a shapefile with measurement points to be analyzed, but no matter how I try, I can't find how to convert to lat lon. I suppose it would be good to know the projection but when I look into the file (with R and summary()) it says "Is projected: NA" and "proj4string : [NA]".



One measurement-point I know is close to São Paulo - Brasil with has x,y latlong = -23.5489, -46.6388 - Zone 23.



How can I find out how to convert this point (and many others) to lat lon?



I tried to follow the instructions of similar questions here, but to no avail.



library(proj4)
proj4string <- "+proj=utm +zone=23 +south +ellps=WGS84 +datum=WGS84 +units=m +no_defs "
# Source data
xy <- data.frame(x="333132,00", y="7394597,00", options("digits"=12))
xy
# Transformed data
pj <- project(xy, proj4string, inverse=TRUE)
pj
latlon <- data.frame(lat=pj$y, lon=pj$x)
print(latlon)






proj utm






share|improve this question







New contributor




Fagner Sutel 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




Fagner Sutel 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






New contributor




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









asked 12 mins ago









Fagner SutelFagner Sutel

1




1




New contributor




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





New contributor





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






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













  • What libraries are you using in R? Also, this resource could be of use: nceas.ucsb.edu/~frazier/RSpatialGuides/…

    – smiller
    20 secs ago





















  • What libraries are you using in R? Also, this resource could be of use: nceas.ucsb.edu/~frazier/RSpatialGuides/…

    – smiller
    20 secs ago



















What libraries are you using in R? Also, this resource could be of use: nceas.ucsb.edu/~frazier/RSpatialGuides/…

– smiller
20 secs ago







What libraries are you using in R? Also, this resource could be of use: nceas.ucsb.edu/~frazier/RSpatialGuides/…

– smiller
20 secs ago












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
});


}
});






Fagner Sutel 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%2f313241%2futm-to-latlong-in-r-with-proj4%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








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










draft saved

draft discarded


















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













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












Fagner Sutel 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%2f313241%2futm-to-latlong-in-r-with-proj4%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

Щит и меч (фильм) Содержание Названия серий | Сюжет |...

is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

Meter-Bus Содержание Параметры шины | Стандартизация |...