hi,<br>I've a problem with a geojson. the coordenates of the geojson are in EPSG:3035 and my project is defined in 4326. I use a Grid width GeoExt to read the information in the map, the script loads the file and it must draw the info in the map. The problem is that i don't know how to transform this information.<br>
The information in the GeoJson is, for example:<br><br>"features": [<br>{ "type": "Feature", "properties": { "OBJECTID": 202, "Xlaea": 3341594.0, "Ylaea": 2342623.0, "pprob": 0.526, "pbin": "1" }, "geometry": { "type": "Point", "coordinates": [ 3341594.0, 2342623.0 ] } },<br>
<br>and I need to transform to: <br><br>{ "type": "Feature", "properties": { "OBJECTID": 202, "Xlaea": 3341594.0, "Ylaea": 2342623.0, "pprob": 0.526, 
"pbin": "1" }, "geometry": { "type": "Point", "coordinates": [ -2.109432568463911, 43.480204635368239 ] }},<br><br>In the map propertys in OpenLayers I`ve defined :<br>
var options= {//map options<br>    projection: new OpenLayers.Projection("EPSG:4326"),<br>    units:"m"};<br><br>Somebody can tell me something about this. Thanks in regards.<br><br>Emilio.<br>