[R-sig-Geo] Installation of proj4 v6 on Ubuntu 18.04 Error: proj/epsg not found

2019-10-28 Thread Tomislav Hengl
Dear R-sig-geo, I am trying to install proj4 v6 on Ubuntu 18.04 bionic. I though I can install it simply by following the ubuntugis steps (https://mothergeo-py.readthedocs.io/en/latest/development/how-to/gdal-ubuntu-pkg.html) but this does not lead to newest version of proj4 v6. Then I hav

Re: [R-sig-Geo] Installation of proj4 v6 on Ubuntu 18.04 Error: proj/epsg not found

2019-10-28 Thread Edzer Pebesma
Hi Tom, formerly PROJ.4 is now called PROJ. Have you also tried the usual ubuntu install suggestions we give to R/ubuntu users, e.g. on https://github.com/r-spatial/sf ? They are: sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable sudo apt-get update sudo apt-get install libudunits2-dev l

Re: [R-sig-Geo] Installation of proj4 v6 on Ubuntu 18.04 Error: proj/epsg not found

2019-10-29 Thread Tomislav Hengl
Thanks Edzer, I removed my gdal (which removes also all QGIS and everything connect unfortunately) then I followed your steps and I get (somehow the proj version is still 5 and not 6): > install.packages("rgdal") % Total% Received % Xferd Average Speed TimeTime Time Curren

Re: [R-sig-Geo] Installation of proj4 v6 on Ubuntu 18.04 Error: proj/epsg not found

2019-10-29 Thread Edzer Pebesma
Would you mind giving the ouptut of: pkg-config proj --libs pkg-config proj --cflags and also try: install.packages("rgdal", repos="http://R-Forge.R-project.org";) On 10/29/19 7:11 AM, Tomislav Hengl wrote: > > Thanks Edzer, > > I removed my gdal (which removes also all QGIS and everything co

Re: [R-sig-Geo] Installation of proj4 v6 on Ubuntu 18.04 Error: proj/epsg not found

2019-10-29 Thread Roger Bivand
On Tue, 29 Oct 2019, Edzer Pebesma wrote: Would you mind giving the ouptut of: pkg-config proj --libs pkg-config proj --cflags and also try: install.packages("rgdal", repos="http://R-Forge.R-project.org";) Preferably not this, not currently stable. Latest CRAN release was stable. Roger

Re: [R-sig-Geo] Installation of proj4 v6 on Ubuntu 18.04 Error: proj/epsg not found

2019-10-29 Thread Tomislav Hengl
I get: $ pkg-config proj --libs -lproj $ pkg-config proj --cflags *empty output On 10/29/19 2:01 PM, Edzer Pebesma wrote: Would you mind giving the ouptut of: pkg-config proj --libs pkg-config proj --cflags and also try: install.packages("rgdal", repos="http://R-Forge.R-project.org";)