M. Hardt
M. Hardt

Reputation: 67

SUMO, Netconvert projection option --proj.plain-geo is missing. GEO coordinates not showing

I am running SUMO 0.30.0 on a ubuntu 16.04 OS in order to run simulations in Omnet++ (using Veins and/or Artery).

For some reason the SUMO GUI does not show any GEO coordinates in the bottom right corner. Also as is described in the title, the netconvert option --proj.plan-geo is missng. The only projection options available are --simple-projection and --proj.scale INT.

I do have the proj libraries installed.
$ proj Rel. 4.9.3, 15 August 2016 usage: proj [ -bCeEfiIlormsStTvVwW [args] ] [ +opts[=arg] ] [ files ]

Can anybody help me find the source of this problem?

Upvotes: 1

Views: 347

Answers (1)

Michael
Michael

Reputation: 3680

The most likely reason is that you did not install the proj development libraries but just proj before compiling. Try something like

sudo apt install libproj-dev

and then do configure and make again.

Upvotes: 2

Related Questions