[julia-users] Re: Maps in Julia?

2016-09-22 Thread 'Philippe Roy' via julia-users
Yeesian, I took the time to read the entire presentation. It does look very promising! Thanks for such work, I'll certainly keep an eye on it. Le mercredi 21 septembre 2016 08:37:27 UTC-4, Yeesian Ng a écrit : > > It is based on slow work-in-progress, but I have slides >

[julia-users] Re: Maps in Julia?

2016-09-22 Thread Michael Borregaard
Yeesian, this looks really promising! It will be great to follow the progress of this.

[julia-users] Re: Maps in Julia?

2016-09-21 Thread 'Philippe Roy' via julia-users
@Yeesian Ng : Thanks! Looks like my typical work day :) @cdm : Subscribed to julia-geo. Will be useful! @others : Thanks! We have lots of useful information for anyone reading this thread. :) Le mercredi 21 septembre 2016 08:37:27 UTC-4, Yeesian Ng a écrit : > > It is based on slow work-in-prog

[julia-users] Re: Maps in Julia?

2016-09-21 Thread Yeesian Ng
It is based on slow work-in-progress, but I have slides (and notebook ) for a talk I'm giving later today on geospatial processing in julia. They give some

[julia-users] Re: Maps in Julia?

2016-09-20 Thread cdm
the julia-geo list may also be helpful: https://groups.google.com/forum/#!forum/julia-geo

[julia-users] Re: Maps in Julia?

2016-09-11 Thread Spencer Lyon
Maybe PlotlyJS.jl can provide the mapping functionality you need? It allows you to create chloropleth maps as well as scatter plots (line, bubble, or dots) on top of maps.

[julia-users] Re: Maps in Julia?

2016-09-11 Thread Kaj Wiik
In fact I was going to suggest you to register Luxor,jl but forgot it... Very convenient layer on top of Cairo.jl. It is really simple to work with rasterized maps, just calculate proper transform matrices and you can switch between normalized, image and UTM coordinates with setmatrix(). The n

[julia-users] Re: Maps in Julia?

2016-09-11 Thread cormullion
@Kaj Cool, I didn't know anyone was using Luxor.jl — perhaps I shouldn't have made so many changes recently... :)

[julia-users] Re: Maps in Julia?

2016-09-09 Thread Kaj Wiik
Perfect, thanks! Kaj On Saturday, September 10, 2016 at 1:30:49 AM UTC+3, Andy Ferris wrote: > > ... and transform geographic coordinates (GNSS logger lat, lon) to UTM >> (cartesian, unit = metre) by calling libgeographic. >> > > Geodesy.jl now has a native port of libgeographics UTM conversion

[julia-users] Re: Maps in Julia?

2016-09-09 Thread Andy Ferris
> > ... and transform geographic coordinates (GNSS logger lat, lon) to UTM > (cartesian, unit = metre) by calling libgeographic. > Geodesy.jl now has a native port of libgeographics UTM conversion code - you might possibly find that convenient. Andy

[julia-users] Re: Maps in Julia?

2016-09-09 Thread Kaj Wiik
Wow, that's interesting! Thanks for pointing that out! On Friday, September 9, 2016 at 4:28:12 PM UTC+3, Michael Borregaard wrote: > > You can open esri shapefiles with shapefiles.jl. There is a plotting > function for shapefiles in plotrecipes.jl. You can layer shapefiles to > create vector ma

[julia-users] Re: Maps in Julia?

2016-09-09 Thread Michael Borregaard
You can open esri shapefiles with shapefiles.jl. There is a plotting function for shapefiles in plotrecipes.jl. You can layer shapefiles to create vector maps. I am happy to help out if you want to use this.

[julia-users] Re: Maps in Julia?

2016-09-08 Thread daycaster
@kaj I had no idea anyone was using that. I must be more careful with updates!

[julia-users] Re: Maps in Julia?

2016-09-08 Thread 'Philippe Roy' via julia-users
@ J Luis : The GMT examples are impressive. I do like the look of the maps. I'll keep an eye on the GMT.jl package. @ Kaj : Nice map too! from all your answers, I see that it's more than possible to do maps in Julia. I'll try your suggestions and see what is more convenient for me. Thanks aga

[julia-users] Re: Maps in Julia?

2016-09-08 Thread J Luis
To give you guys an idea, these are all GMT mapping examples quinta-feira, 8 de Setembro de 2016 às 19:52:40 UTC+1, Chris escreveu: > > The PyCall README is quite comprehensi

[julia-users] Re: Maps in Julia?

2016-09-08 Thread Chris
The PyCall README is quite comprehensive, and the Basemap documentation has some good examples. Otherwise, I basically just used trial and error until things worked the way I expected -- you get the hang of it eventually. On Thursday, September 8, 2016 at 2:47:12 PM UTC-4, Philippe Roy wrote: >

[julia-users] Re: Maps in Julia?

2016-09-08 Thread Kaj Wiik
Hi! I have done some bits of code to make maps and calculate results for Finnish powered paragliding championships over the years, like this: http://movasuunnistus.dy.fi/viitasaari2016/tulokset/suunnistus-viitasaari-2016-timlander.pdf I use Cairo.jl via Luxor.jl and transform geographic coordina

[julia-users] Re: Maps in Julia?

2016-09-08 Thread 'Philippe Roy' via julia-users
I guess using PyCall could work indeed. Is there some kind of tutorial about this matter (i.e. Basemap in Julia through pyCall) that you know of? I'm not really proficient in Julia and Python now (hoping to learn though!). Thanks! Le jeudi 8 septembre 2016 14:33:47 UTC-4, Chris a écrit : > > T

[julia-users] Re: Maps in Julia?

2016-09-08 Thread J Luis
Hi, The GMT.jl is still under development, namely it's waiting for the next (this month) release of GMT5.3, but it already gives you access to one of most powerful Mapping Tools. quinta-feira, 8 de Setembro de 2016 às 19:33:47 UTC+1, Chris escreveu: > > This

[julia-users] Re: Maps in Julia?

2016-09-08 Thread Chris
This doesn't specifically answer your question, but I have used Basemap via PyCall without too much trouble in the past. On Thursday, September 8, 2016 at 2:05:53 PM UTC-4, Philippe Roy wrote: > > Hello! > > I'm trying to do a geographical map in Julia. Is that even possible? I > can't find any