[Pharo-users] GIS support for Pharo

2020-06-03 Thread Serge Stinckwich
Dear all, there was already some discussion in the list about GIS support for Pharo previously. Working on CORMAS multi-agent simulation platform: https://github.com/cormas/cormas some developers feel the need to have more GIS support for Pharo. I know of existing GIS software: - GeoJSON by Zwei

Re: [Pharo-users] ESRI ASCII raster format

2020-06-03 Thread Serge Stinckwich
On Thu, Jun 4, 2020 at 5:16 AM Stéphane Ducasse wrote: > I did it as a kata as fast as I could … > > https://github.com/Ducasse/ESRI-ASCII-Raster > > I found the spec a bit strange > yes this is a very old format ... > > The header information is followed by cell value information specified in

[Pharo-users] How to flatten traits

2020-06-03 Thread Jupiter Jones
Hi All, There used to be a method to #flattenDownTraits that I can’t find the equivalent in Pharo 8. How do you go about flattening traits now? Thanks for any advice. Cheers, J

Re: [Pharo-users] ESRI ASCII raster format

2020-06-03 Thread Hernán Morales Durand
I think we could also use the GeoJSON package? I did a little example with the package from the zweidenker repository Metacello new baseline: 'GeoJSON'; repository: 'github://zweidenker/GeoJSON'; load. and use it like this: | url file | url := 'https://github.com/mgaitan/departament

Re: [Pharo-users] ESRI ASCII raster format

2020-06-03 Thread Stéphane Ducasse
I did it as a kata as fast as I could … https://github.com/Ducasse/ESRI-ASCII-Raster I found the spec a bit strange The header information is followed by cell value information specified in space-delimited row-major order, with each row separated

[Pharo-users] Moose install

2020-06-03 Thread Michael Burns via Pharo-users
--- Begin Message --- Pharo 8 on Mac. I used Pharo Project Catalog to install Moose. But, it looks like there were maybe some errors. When I search for Moose in the system browser I find these packages: ConfigurationOfMoose ConfigurationOfMooseAlgos Moose-Algos-Graph Mose-Algos-Graph-Tests How

[Pharo-users] [ANN] HighchartsSt v12.0.0 [v12.0.0] released!

2020-06-03 Thread Buenos Aires Smalltalk
HighchartsSt, a highcharts js api wrapper for pharo smalltalk reached it's v12.0.0 version. Breaking Changes Updated Highcharts and Highstock JS libraries to 8.1.0 (See Highcharts and Highstock changelog for details). Replaced objects provided for creating charts (series, point) with a new protoco

Re: [Pharo-users] ESRI ASCII raster format

2020-06-03 Thread Richard O'Keefe
Reading and writing the format looks pretty straightforward; the question is, what is the internal representation? These things are basically decorated 2D number arrays. It is said in various places that the cell entries are stored as integers, but not what precision, nor what mapping there might b

Re: [Pharo-users] [Pharo-dev] About strange email related to smalltalkhub read-only on squeak-dev

2020-06-03 Thread Norbert Hartl
Stef, that is a second problem. The main problem to me is solving the crypto stuff once and for all. And then I would like to know why people like Ron say things like this. But yes, shouldn't go without explanation/reaction! Norbert > Am 03.06.2020 um 00:13 schrieb Stéphane Ducasse : > > Wh

Re: [Pharo-users] ESRI ASCII raster format

2020-06-03 Thread Serge Stinckwich
On Wed, Jun 3, 2020 at 3:40 PM Stéphane Ducasse wrote: > Ok I’m a paper on the grill and I will give a try to see if I can do it in > TDD in 1 or 1:30 as a kata. > I will let you know but by the end of the week you have it. > > Our meeting is every Friday at 11:30am (France time), 9:30am UTC time

Re: [Pharo-users] ESRI ASCII raster format

2020-06-03 Thread Stéphane Ducasse
Ok I’m a paper on the grill and I will give a try to see if I can do it in TDD in 1 or 1:30 as a kata. I will let you know but by the end of the week you have it. > On 3 Jun 2020, at 09:33, Serge Stinckwich wrote: > > > > On Wed, Jun 3, 2020 at 3:27 PM Stéphane Ducasse

Re: [Pharo-users] ESRI ASCII raster format

2020-06-03 Thread Serge Stinckwich
On Wed, Jun 3, 2020 at 3:27 PM Stéphane Ducasse wrote: > Thanks for mentioning it. > It can be a super nice exercise. > with a line based constructor. > It can be super fun to code for a book chapter. > Yes I think so. This is not super complicated from what I see in the format description. For

Re: [Pharo-users] ESRI ASCII raster format

2020-06-03 Thread Stéphane Ducasse
Thanks for mentioning it. It can be a super nice exercise. with a line based constructor. It can be super fun to code for a book chapter. For when do you need it? S. > On 3 Jun 2020, at 04:01, Serge Stinckwich wrote: > > Dear all, > > I'm looking for an implementation of ESRI ASCII raster