http://download.cnet.com/UTM-Coordinate-Converter/3000-12940_4-75961066.html
Ashokaditya P. Dhurandhar, QP (Major Minor, Atomic Minerals & Prescribed substances), PE (Geotechnical Engineering)
cell: +919867218908
website: www.oriongeohytech.com
http://www.synnatschke.de/geo-tools/coordinate-converter.php
Ashokaditya P. Dhurandhar, QP (Major Minor, Atomic Minerals & Prescribed substances), PE (Geotechnical Engineering)
cell: +919867218908
website: www.oriongeohytech.com
--
You received this message because you are subscribed to the Google Groups "OpendTect Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to users+un...@opendtect.org.
To post to this group, send email to us...@opendtect.org.
Visit this group at https://groups.google.com/a/opendtect.org/group/users/.
To view this discussion on the web visit https://groups.google.com/a/opendtect.org/d/msgid/users/8902c048-a203-4d91-8d74-80fc830d6234%40opendtect.org.
For more options, visit https://groups.google.com/a/opendtect.org/d/optout.
http://www.synnatschke.de/geo-tools/coordinate-converter.php
Ashokaditya P. Dhurandhar, QP (Major Minor, Atomic Minerals & Prescribed substances), PE (Geotechnical Engineering)
cell: +919867218908
website: www.oriongeohytech.com
--
--
Andre,
Geotrans from the National Geospatial Intelligence Agency is a free download that will allow bulk transformation and is easy to use
Bob
--
I use GMT or the binding with python. Reading the coordinate in the SEG-Y then writing it in another bit or making a simple coordinate file. It is relatively easy if you know how to get your original coordinates out.
Be careful with some softwares transformations are approximations and some do not do the job properly. They generally document what is used if serious.
Have fun !
Julien Moreau
To view this discussion on the web visit https://groups.google.com/a/opendtect.org/d/msgid/users/C323F3C8EFFD714EA07E3CAA7D370F8D6708462A%40ABZ-EXP07.ps.internal.
# Coordinate Reference System (CRS)# Find EPSG code of the coordinate systems that you are using.# http://spatialreference.org/import os
from osgeo import gdal
from osgeo import osr
from osgeo import ogr
SourceEPSG = 4326
TargetEPSG = 2193
source = osr.SpatialReference()
source.ImportFromEPSG(SourceEPSG)
target = osr.SpatialReference()
target.ImportFromEPSG(TargetEPSG)def CRSTransform(Lat, Long):
transform = osr.CoordinateTransformation(source, target)
point = ogr.CreateGeometryFromWkt("POINT ("+Long+" "+Lat+")")
point.Transform(transform)
print point.GetX(), " ", point.GetY() # OR make a list array and write as a CSV file.To view this discussion on the web visit https://groups.google.com/a/opendtect.org/d/msgid/users/CAF75SV6pqZrNM%2BmDk0wOH-GGE%2BR5mmOtOG%3DWVShonRcCuvVusA%40mail.gmail.com.
I've done this before (but not in opendtect) by exporting the navigation to a text file. Loading that into qgis and reprojecting it there before exporting it back to text and into the seismic software. QGIS uses the open source projection libraries that do a pretty good job in my experience.
Matt
--
To view this discussion on the web visit https://groups.google.com/a/opendtect.org/d/msgid/users/CA%2Bi7uD5SaVUDnPbzhpt0jFr2J4pz2hR6SHJ9K8doxtELjwx57A%40mail.gmail.com.
Hi everyone,
I'm a user of landmark s/w. Within that there is map projection module which easily does transformation.
As well as, within kingdom s/w one can easily transform it out.
Hope it helps you.
Nancy Jain
Geophysicist(S)
Ongc Ltd.
--