CoordinateTransformations

Hello,
I want to use CoordinateTransformations package but when I add it I get the error below. I tried to add GR@0.34 but it gave similar error. I’m very new to julia, learning it as I convert Matlab code so I am stuck here. Can anyone help please? I am using Julia 1.0.1

Thank you

Unsatisfiable requirements detected for package GR [28b8d3ca]:
 GR [28b8d3ca] log:
 ├─possible versions are: [0.1.0, 0.2.0, 0.3.0, 0.4.0, 0.5.0, 0.6.0, 0.7.0, 0.8.0, 0.9.0-0.9.17, 0.10.0, 0.11.0, 0.12.0, 0.13.0, 0.14.0, 0.15.0, 0.16.0, 0.17.0, 0.18.0, 0.19.0, 0.20.0, 0.21.0, 0.22.0, 0.23.0, 0.24.0, 0.25.0, 0.26.0, 0.28.0, 0.29.0, 0.30.0, 0.31.0, 0.32.0-0.32.3, 0.33.1, 0.34.0-0.34.1, 0.35.0] or uninstalled
 ├─restricted to versions 0.34.1 by an explicit requirement, leaving only versions 0.34.1
 └─restricted by julia compatibility requirements to versions: 0.35.0 or uninstalled — no versions left

I think it needs a new release. You can try add CoordinateTransformations#master.

Thanks @kristoffer.carlsson. However, I got the same error:

(v1.0) pkg> add CoordinateTransformations#master
  Updating registry at `~/.julia/registries/General`
  Updating git-repo `https://github.com/JuliaRegistries/General.git`
   Cloning git-repo `https://github.com/FugroRoames/CoordinateTransformations.jl.git`
  Updating git-repo `https://github.com/FugroRoames/CoordinateTransformations.jl.git`
 Resolving package versions...
ERROR: Unsatisfiable requirements detected for package GR [28b8d3ca]:
 GR [28b8d3ca] log:
 ├─possible versions are: [0.1.0, 0.2.0, 0.3.0, 0.4.0, 0.5.0, 0.6.0, 0.7.0, 0.8.0, 0.9.0-0.9.17, 0.10.0, 0.11.0, 0.12.0, 0.13.0, 0.14.0, 0.15.0, 0.16.0, 0.17.0, 0.18.0, 0.19.0, 0.20.0, 0.21.0, 0.22.0, 0.23.0, 0.24.0, 0.25.0, 0.26.0, 0.28.0, 0.29.0, 0.30.0, 0.31.0, 0.32.0-0.32.3, 0.33.1, 0.34.0-0.34.1, 0.35.0] or uninstalled
 ├─restricted to versions 0.34.1 by an explicit requirement, leaving only versions 0.34.1
 └─restricted by julia compatibility requirements to versions: 0.35.0 or uninstalled — no versions left

Try remove the problematic package, rm GR.

Wanted to do that but wasn’t sure since it was installed along with one of the plotting libraries, PyPlot I think. So I removed GR and added CoordinateTransformations and it built its own GR. At any rates, it seems to have installed correctly. Thanks.