Hi, both Arches 2 and 3 store your data in WGS 84 projection. That being said, getting it out of the system in a different projection shouldn't be hard, just go use a PostGIS query with ST_Transform. Something like (in arches2):
*SELECT entityid, ST_AsText(ST_Transform(geometry, 31370)) FROM data.geometries;* (The ST_AsText is just to make the display easier, the 31370 is Belgian Lambert 72 projection). So, just let Arches store it for you in whatever projection the system is used to and get it out in whatever you need. Cheers, Koen Op vrijdag 10 april 2015 21:46:40 UTC+2 schreef Burim Ameti: > > hello, > In arches 2.0 csv and KML export not implemented, i am need to download > data into KML or CSV the link showed in advanced search. > > arche stores data in wgs 84, is it possible to store new data in other > projections? > > > With respect > Burim Ameti > > > > -- -- To post, send email to [email protected]. To unsubscribe, send email to [email protected]. For more information, visit https://groups.google.com/d/forum/archesproject?hl=en --- You received this message because you are subscribed to the Google Groups "Arches Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
