Questions tagged [epsg]

107 questions
2
votes
1 answer

Python GDAL/OGR : how to create a MapInfo TAB file?

Using import gdal,ogr, and given an EPSG (e.g. here 2154), what is the code in python to write a (nearly) empty MapInfo TAB file, or just the summary line of the projection (TAB format) : CoordSys Earth Projection…
Eric H.
  • 2,152
  • 4
  • 22
  • 34
2
votes
0 answers

Basemap (Matlibplot) not plotting GPS WGS84 coordinates accurately

I have a list of lat,lon coordinates from Flickr pictures taken in Sydney (see here) When I plot these points on google maps, the locations are correct (see here) However when I use my Basemap the results are not correct. This is especially…
freefall
  • 590
  • 2
  • 7
  • 19
2
votes
6 answers

java transform projection EPSG:900913 to EPSG:4326

in the openlayers we can simple transform EPSG:900913 to EPSG:4326 I'm look for a java lib can do that. here I found this, http://www.jhlabs.com/java/maps/proj/index.html but the document is in c++ I don't know how to use it. If anyone konw…
user268129
2
votes
2 answers

How to add EPSG 900913 to geodjango spatialite database?

I'm trying to include a Google Maps widget in my admin-interface using this snippet on a Linux system (presently running locally on a Bitnami django stack in VMWare Player). The map renders, but point features (any features really) in my database…
thin
  • 71
  • 8
1
vote
0 answers

QGIS - Incorrect distance measurement using EPSG: 25832

I have an issue regarding distance and area measurements in QGIS (includes buffer etc.). My CRS is set to EPSG: 25832 (Germany). Measurements differ substantially from those of my colleagues (using QGIS 3.28) and from Google earth/maps measurements…
1
vote
0 answers

Transform coordinates with PostGIS based on Proj4 transformation text

I am working on a project where I have to transform coordinates expressed in LUREF (LUxemburg REference System/Frame) to WGS84 (Lat/long) by using the bundle PostGIS of Postgres database. The Proj4 texts for the different CRS are the following…
1
vote
2 answers

Transform laltitude and longitude in python pandas using pyproj

I have a dataframe as below: df = pd.DataFrame( { 'epsg': [4326, 4326, 4326, 4203, 7844], 'latitude': [-34.58, -22.78, -33.45, -33.60, -30.48], 'longitude': [122.31, 120.2, 118.55, 140.77, 115.88]}) Here is the function to…
kitchenprinzessin
  • 1,023
  • 3
  • 14
  • 30
1
vote
0 answers

How to insert the correct parameter in order to visualize wms maps in leaflet (proj4)

I'm struggling to visualize WMS-layers from a Rest-service using Leaflet. All i see currently is a gray map, not changing anything when moved. The layers i want to visualize are located in Faroe Island, and are therefore using the CS…
Ólavur Nón
  • 161
  • 1
  • 13
1
vote
2 answers

Does sgo R package give accurate UK latitude and longitude?

Newbie here, so please be gentle with me! My council has released some data about tree protection orders (TPOs) in EPSG 27700 format. So an example would be 448098.4741, 271753.1604 I want to convert this to latitude and longitude so I can add it to…
1
vote
1 answer

How can I display the global UTM grid on a map in openlayers?

I want to display the global UTM Grid on a map in openlayers. There is no proj definition for the whole system, just the individual zones. For the projection of my map I want to use EPSG:3857.Im using the Ol-Ext graticule to use a different…
T.G
  • 11
  • 1
1
vote
0 answers

Find lat/lon coordinates using azimuth,inclination and measured_depth(MD) for a wellbore/pipeline

I'm trying to find out the missing lat and lon points for a oil pipeline so that it can be 3D-plotted for our project.I am using a third-party api which provides me with the starting lat and long of the pipeline ,it also provides the…
1
vote
0 answers

How to change projection for L.imageOverlay in leaflet

I want to use L.imageOverlay to show global temperature, my current image looks like the one below: But when i overlay it using leaflet it shows like this: Maybe it because wrong projection, this is my code: L.imageOverlay('./tt.png', [[90,…
Duy Thức
  • 11
  • 2
1
vote
1 answer

FutureWarning after setting epsg in Python with geopandas

I get this error: FutureWarning: '+init=:' syntax is deprecated. ':' is the preferred initialization method. When making the change, be mindful of axis order changes: https://pyproj4.github.io/pyproj/stable/gotchas.html#axis-order-changes-in-proj-6…
Kamel
  • 141
  • 1
  • 9
1
vote
1 answer

Convert EPSG:32632 coordinates in meters in JAVA

I'm trying to find a solution to convert my epsg:32632 coordinates into meters. epsg:32632 coordinates look like: 13.39453125, 58.34765625. Does anyone know how can i do this in java? Thanks, Ares
Ares
  • 23
  • 3
1
vote
1 answer

Python - GeoPandas Does Not Work After Opening .DXF With Adobe Illustrator

I'm attempting to plot a CAD file (.dxf) using GeoPandas then save it as a KML file. When I attempt to do so - the CAD file ends up showing up in the wrong place (in the middle of the ocean - when it should be in Florida). The strange part is this…
user2161499
  • 67
  • 1
  • 10