Pharo-users
By thread
pharo-users@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
June 2020
- 63 participants
- 235 messages
Re: [Pharo-users] GIS support for Pharo
by Serge Stinckwich
Yes Thursday 11/06 on CORMAS channel.
We can start at 10am in Germany, 4pm for me in Macau, 8am UTC.
Regards,
On Thu, Jun 4, 2020 at 8:22 PM Hernán Morales Durand <
hernan.morales(a)gmail.com> wrote:
>
>
> El jue., 4 jun. 2020 a las 9:16, Serge Stinckwich (<
> serge.stinckwich(a)gmail.com>) escribió:
>
>> OpenGIS is an object-oriented meta-model for GIS. There is no
>> implementation in Pharo but can give a good blueprint if we want to do
>> something like that.
>>
>> Iâm GMT+8. So a meeting Thursday at 9am for you is great for me (2pm for
>> me).
>> It would be nice if Hernan can join also, but might be difficult with the
>> time zone difference.
>>
>>
> You mean next Thursday 11/06 ?
> On discord cormas channel?
> I could connect no problem.
>
> Cheers,
>
> Hernán
>
>
>
>> Regards,
>>
>> Sent from my iPad
>>
>> On 4 Jun 2020, at 18:50, Norbert Hartl <norbert(a)hartl.name> wrote:
>>
>> 
>>
>> Am 04.06.2020 um 12:31 schrieb Serge Stinckwich <
>> serge.stinckwich(a)gmail.com>:
>>
>>
>>
>> On Thu, Jun 4, 2020 at 4:11 PM Norbert Hartl <norbert(a)hartl.name> wrote:
>>
>>> I started this initiative for our company because we are in the mobility
>>> bubsiness where maps and geo centric things are important. It is not
>>> elaborate as a real GIS support but a start. So here my secret plan:
>>>
>>>
>> Thank you Norbert for your interest on that topic.
>> I put Etienne Delay because he is not ont the pharo-users mailing-list
>> and I'm working with him on GIS issues for CORMAS.
>>
>> - GeoJSON [1] was done because web services came up with that format to
>>> exchange geo shape information. Furthermore database like MongoDB changed
>>> their internal support for 2d/2dsphere indexes also to GeoJSON. There is a
>>> package GeoJSON-Voyage which is start of a helper to easily store Geo data
>>> in voyage-mongo.
>>>
>>> - I started to do a KML Reader [2] because besides GeoJSON that is a
>>> widely used format. And this can be used in Google Earth which is the best
>>> free Geo editor that I know.
>>>
>>> - As KML and GeoJSON use a similar model for representing geo shapes and
>>> POIs I started to factor out that into the Geography package [3].
>>>
>>> - At the moment in the Geography package there is only a 2D point class
>>> GGPoint to have something to hold geo coordinates (there is also a 3D
>>> variant). In the past I used Point as the class for these things but came
>>> to the conclusion that there is a distinction between a point and geo point
>>> when it comes to things like distance etc. So it is better to have them
>>> separate. Into this model I want to morph the classes for LineStrings,
>>> LinearRings, Polygons etc. from GeoJSON and KML to have a common foundation
>>> for the basic geo shapes lines, multi-lines, closed multi-lines (=polygons)
>>> etc.
>>>
>>> - As GGPoint is distinct to Point this is just the context where you use
>>> it. The Geography package should be a companion to the Geometry package [4]
>>> which I forked from TelescopeSt to make it a community package which is
>>> good for this plan but also for roassal which uses the Geometry package. To
>>> me the geoX model should be switched between Geometry and Geography
>>> regarding to the context you want to work in being planar or spherical.
>>>
>>> - In my tools that I build this model classes have also gt-inspector
>>> extension so the shapes can be viewed just by inspecting them. I'm fighting
>>> with the roassal team to make it possible for geo coordinates which
>>> conflicts at the moment with their defined thresholds. But with the
>>> factoring the shapes into Geography I will move those extension to the
>>> Geography package as well
>>>
>>> - I also implemented a polygon intersection algorithm (Weiler and
>>> Atherton) which I will then incorporate in any of the GeoX packages
>>>
>>>
>> You have done a lot of work. And we add all the work done by Hernan on
>> supporting ESRI shapefiles, we have already a good start.
>>
>> Etienne also mention the OpenGIS model in this issue:
>> https://github.com/cormas/cormas/issues/139
>>
>> From what I understood, OpenGIS model crosscut many points of the
>> Geography package:
>> http://portal.opengeospatial.org/files/?artifact_id=25355
>>
>> So these are the pieces that are there. The plan in text is:
>>>
>>> - Have a incarnation of a "point" and make that switch context from
>>> planar to spherical
>>> - Use planar treatment with the Geometry package (intersections etc.)
>>> - Use this "point" to generate shapes either geometric or geographic
>>> - Be able to read and write in common formats like GeoJSON and KML
>>> - Make shapes be composable and inspectable with the existing tools
>>>
>>> I think GIS needs more but what we have is more than just a start. The
>>> projection system with the current code is WGS84 for sure. If there are
>>> other needs we need to think about this early.
>>>
>>> For everything else I'm open ears. Even for the idea of having a
>>> pharo-gis github project to collect those things to a common place. But I
>>> like to discuss GIS and not if it makes sense to have a all of these github
>>> repos.
>>>
>>
>> We can try to do an online meeting to discuss about that with Etienne and
>> other people interested by this topic.
>> We are mostly interested to have GIS support on CORMAS, so having a
>> common repository will definitively help us.
>> At the moment we are using Roassal2 for CORMAS visualisatin and we are
>> moving towards Roassal3.
>>
>>
>> Good idea! I just created the Geography package because I felt the need
>> for it. But if there is something better I would like to use this instead.
>> I'm generally available the best at wednesdays and thursdays. Next week is
>> already stuffed but if you propose some DateAndTimes I'm sure we find a
>> match. Which timezone are you in at the moment?
>>
>> Norbert
>>
>> Regards,
>> --
>> Serge Stinckwic
>> h
>> https://twitter.com/SergeStinckwich
>>
>>
>>
--
Serge Stinckwic
âhâ
https://twitter.com/SergeStinckwich
â
June 5, 2020
Re: [Pharo-users] GIS support for Pharo
by Serge Stinckwich
Hi Todd,
you can join. Everyone is welcome.
GDAL FFI integration would be great, but this is a lot of work I guess.
Regards,
On Fri, Jun 5, 2020 at 2:34 AM Todd Blanchard via Pharo-users <
pharo-users(a)lists.pharo.org> wrote:
> Hi Serge,
>
> I would love to participate in getting some GIS features into Pharo. I
> think it would be a fantastic platform for GIS.
>
> My personal orientation is doing marine navigation (have boat with
> sensors, want boat to be be smarter about navigation).
>
> My main interests is in being able to render S57/S52 formats. There are a
> number of boat fans that balk at the price of expensive chart plotter
> computers and software.
>
> They have given rise to some DIY stuff. Some of it just rips code
> straight out of https://gdal.org - I think possibly a FFI integration
> with gdal might be an amazing resource.
>
> I am time constrained for when I can work on this stuff but would like it
> a lot if we at least had some core data types for simple things like
> lat/lng, regions (polygons), and a decent general map renderer.
>
> Anyhow, please include me in any conversations. Navigation (both air and
> sea) are two things I have an interest in.
>
> On Jun 3, 2020, at 8:31 PM, Serge Stinckwich <serge.stinckwich(a)gmail.com>
> wrote:
>
> 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 Zweidenker: https://github.com/zweidenker/GeoJSON
> - ESRI ascii raster, done by Stephane recently:
> https://github.com/Ducasse/ESRI-ASCII-Raster
> - shapefile support by Hernan: http://smalltalkhub.com/#!/~hernan/Shapes
> (to be moved to github)
> - I found this project also: http://www.squeaksource.com/gekon.html
>
> I know that Etienne Delay is also interested by GIS support and propose to
> implement OpenGIS model support:
> https://github.com/cormas/cormas/issues/139
>
> Can we try to unite and maybe create a pharo-GIS organization on github to
> federate our efforts?
>
> Cheers,
> --
> Serge Stinckwic
> h
> https://twitter.com/SergeStinckwich
>
>
>
--
Serge Stinckwic
âhâ
https://twitter.com/SergeStinckwich
â
June 5, 2020
Re: Moose install
by Michael Burns
Are there specific instructions describing how exactly to import a project from github?
It may already be there but I have not found it.
My Mac and Centos Pharo images have issues importing repositories from github.
I can clone it to my machines, but donât know how to import that repo.
Iâve tried a lot of different ways and often find that Iâm doing it right.
Iâve tried Iceberg, and the Pharo catalog.
Sent from my iPad
> On Jun 4, 2020, at 16:35, Stéphane Ducasse <stephane.ducasse(a)inria.fr> wrote:
>
> Moose is running on all three platforms.
> The team is using Pharo 80.
> Would be good that they reply but there are more on discord.
>
> S.
>
>> On 4 Jun 2020, at 21:30, Michael Burns <michaelburns(a)mac.com> wrote:
>>
>>
>> From: Michael Burns <michaelburns(a)mac.com>
>> Subject: Re: Moose install
>> Date: 4 June 2020 at 21:30:51 CEST
>> To: Stéphane Ducasse <stephane.ducasse(a)inria.fr>
>> Cc: Michael Burns <michaelburns(a)mac.com>, "pharo-users(a)lists.pharo.org" <pharo-users(a)lists.pharo.org>
>>
>>
>> Three questions:
>>
>> 1) What is the proper way to undo the Moose that I installed incorrectly?
>>
>> 2) Iâve found (I think) the GitHub repo for Moose. https://github.com/moosetechnology/Moose
>>
>> Looking closely at the .travis.yml file:
>>
>> smalltalk:
>> - Pharo64-9.0
>> - Pharo64-8.0
>> It looks like it is supported on Pharo 8 or 9. Iâm using 8
>>
>> 3) However, I also see this:
>>
>>
>> os:
>> - linux
>>
>> Does this mean it only is supported on linux?
>>
>>
>>> On Jun 4, 2020, at 3:08 AM, Stéphane Ducasse <stephane.ducasse(a)inria.fr> wrote:
>>>
>>> I do not think that Moose should be loaded like that.
>>> you can obtain a build from the launcher and all the code should be hosted on github now.
>>>
>>> S.
>>>
>>>> On 3 Jun 2020, at 22:52, Michael Burns <michaelburns(a)mac.com> wrote:
>>>>
>>>>
>>>> From: Michael Burns <michaelburns(a)mac.com>
>>>> Subject: Moose install
>>>> Date: 3 June 2020 at 22:52:10 CEST
>>>> To: "pharo-users(a)lists.pharo.org" <pharo-users(a)lists.pharo.org>
>>>>
>>>>
>>>> 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
>>>>
>>>> However, in the Transcript I found a number of <ClassName> is Undeclared.
>>>>> And at the end: Error: Cannot resolve symbolic version #release1
>>>>
>>>> On the positive side, testRunner says that all Moose*-Tests test cases pass.
>>>>
>>>> Am I good?
>>>> Or is there something else to do here?
>>>> On the MooseTechnology page it seems to indicate that the latest version they have runs on Pharo 7.
>>>>
>>>> ...finished 1.0
>>>> Fetched -> ConfigurationOfMoose-TudorGirba.364 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/
>>>> Loaded -> ConfigurationOfMoose-TudorGirba.364 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/
>>>> Loading 5.0 of ConfigurationOfMoose...
>>>> Fetched -> ConfigurationOfPastell-TorstenBergmann.13 --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/
>>>> Loaded -> ConfigurationOfPastell-TorstenBergmann.13 --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/
>>>> Fetched -> ConfigurationOfPetitParser-AndreiChis.82 --- http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- http://smalltalkhub.com/mc/Moose/PetitParser/main/
>>>> Loaded -> ConfigurationOfPetitParser-AndreiChis.82 --- http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfMetanool-GeorgeGanea.21 --- http://smalltalkhub.com/mc/Moose/Metanool/main/ --- http://smalltalkhub.com/mc/Moose/Metanool/main/
>>>> Loaded -> ConfigurationOfMetanool-GeorgeGanea.21 --- http://smalltalkhub.com/mc/Moose/Metanool/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfGlamour-TudorGirba.225 --- http://smalltalkhub.com/mc/Moose/Glamour/main/ --- http://smalltalkhub.com/mc/Moose/Glamour/main/
>>>> Loaded -> ConfigurationOfGlamour-TudorGirba.225 --- http://smalltalkhub.com/mc/Moose/Glamour/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfGToolkit-GeorgeGanea.97 --- http://smalltalkhub.com/mc/Moose/GToolkit/main/ --- http://smalltalkhub.com/mc/Moose/GToolkit/main/
>>>> Loaded -> ConfigurationOfGToolkit-GeorgeGanea.97 --- http://smalltalkhub.com/mc/Moose/GToolkit/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfXMLParser-monty.353 --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (DTDCachingExternalEntityResolver is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLAbstractFactory is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLFileHandle is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLParserLimits is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLStreamConverter is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLClassFinder is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLClassFinder is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (DTDCachingExternalEntityResolver is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLAbstractFactory is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLFileHandle is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLParserLimits is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLStatelessStreamConverter is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLStreamConverter is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLClassFinder is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLClassFinder is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (DTDCachingExternalEntityResolver is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLAbstractFactory is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLFileHandle is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLParserLimits is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLStatelessStreamConverter is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLStreamConverter is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLClassFinder is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLTokenizerState is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (DTDCachingExternalEntityResolver is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLAbstractFactory is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLFileHandle is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLParserLimits is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLStreamConverter is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLStatelessStreamConverter is Undeclared)
>>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLTokenizerState is Undeclared)
>>>> Loaded -> ConfigurationOfXMLParser-monty.353 --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/
>>>> Fetched -> ConfigurationOfPetitSQLParser-GeorgeGanea.34 --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/ --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/
>>>> Loaded -> ConfigurationOfPetitSQLParser-GeorgeGanea.34 --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfMooseAlgos-AndreiChis.60 --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/ --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/
>>>> Loaded -> ConfigurationOfMooseAlgos-AndreiChis.60 --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfOSProcess-ThierryGoubier.41 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/
>>>> Loaded -> ConfigurationOfOSProcess-ThierryGoubier.41 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfMerlin-GeorgeGanea.48 --- http://smalltalkhub.com/mc/Moose/Merlin/main/ --- http://smalltalkhub.com/mc/Moose/Merlin/main/
>>>> Loaded -> ConfigurationOfMerlin-GeorgeGanea.48 --- http://smalltalkhub.com/mc/Moose/Merlin/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfRoelTyper-StephaneDucasse.3 --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/ --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/
>>>> Loaded -> ConfigurationOfRoelTyper-StephaneDucasse.3 --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfFame-CyrilFerlicot.40 --- http://smalltalkhub.com/mc/Moose/Fame/main/ --- http://smalltalkhub.com/mc/Moose/Fame/main/
>>>> Loaded -> ConfigurationOfFame-CyrilFerlicot.40 --- http://smalltalkhub.com/mc/Moose/Fame/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfSmallDude-GeorgeGanea.41 --- http://smalltalkhub.com/mc/Moose/SmallDude/main/ --- http://smalltalkhub.com/mc/Moose/SmallDude/main/
>>>> Loaded -> ConfigurationOfSmallDude-GeorgeGanea.41 --- http://smalltalkhub.com/mc/Moose/SmallDude/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> ConfigurationOfRoassal2-AlexandreBergel.144 --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/ --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/
>>>> Loaded -> ConfigurationOfRoassal2-AlexandreBergel.144 --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Fetched -> Moose-Help-TudorGirba.5 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Famix-Specifications-TudorGirba.7 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-HismoImporter-gl.12 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-Test-HismoImporter-StephanEggermont.5 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Arki-Reporter-Core-AndreHora.21 --- http://smalltalkhub.com/mc/Moose/Arki/main/ --- http://smalltalkhub.com/mc/Moose/Arki/main/
>>>> Fetched -> Arki-Tests-Reporter-TudorGirba.9 --- http://smalltalkhub.com/mc/Moose/Arki/main/ --- http://smalltalkhub.com/mc/Moose/Arki/main/
>>>> Fetched -> Famix-Tests-C-AndreHora.6 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Famix-Tests-Extensions-TudorGirba.25 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Dynamix-Tests-Core-TudorGirba.17 --- http://smalltalkhub.com/mc/Moose/DynaMoose/main/ --- http://smalltalkhub.com/mc/Moose/DynaMoose/main/
>>>> Fetched -> Moose-TestResources-Reference-Core-TudorGirba.3 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-Reference-PackageOne-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-LAN-AndreHora.7 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-LCOM-AndreHora.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P4FullInteracted-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P6InteractedReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P5FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P1FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P2InteractedReferencerReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P3InteractedReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P7ReferencerReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P8FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P9FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P10InteractedReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P11FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P12FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P13FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-P14FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-KGB-PExtensions-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-PackageBlueprint-P1-NicolasAnquetil.2 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-PackageBlueprint-P2-JeanRemyFalleri.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-PackageBlueprint-P3-JeanRemyFalleri.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-TestResources-PackageBlueprint-P4-JeanRemyFalleri.3 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Fetched -> Moose-Tests-MonticelloImporter-AndreHora.6 --- http://smalltalkhub.com/mc/Moose/Moose/main/ --- http://smalltalkhub.com/mc/Moose/Moose/main/
>>>> Project: Metanool stable
>>>> [1.2]
>>>> Fetched -> ConfigurationOfMagritte3-AndreiChis.128 --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/ --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/
>>>> Loaded -> ConfigurationOfMagritte3-AndreiChis.128 --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/ --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>>> Project: Magritte3 stable
>>>> [3.5.2]
>>>> Fetched -> ConfigurationOfGrease-CyrilFerlicot.349 --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/
>>>> Loaded -> ConfigurationOfGrease-CyrilFerlicot.349 --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/
>>>> Error: Cannot resolve symbolic version #release1
>>>>
>>>>
>>>>
>>>>
>>>
>>> --------------------------------------------
>>> Stéphane Ducasse
>>> http://stephane.ducasse.free.fr / http://www.pharo.org
>>> 03 59 35 87 52
>>> Assistant: Aurore Dalle
>>> FAX 03 59 57 78 50
>>> TEL 03 59 35 86 16
>>> S. Ducasse - Inria
>>> 40, avenue Halley,
>>> Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
>>> Villeneuve d'Ascq 59650
>>> France
>>>
>>
>>
>>
>
> --------------------------------------------
> Stéphane Ducasse
> http://stephane.ducasse.free.fr / http://www.pharo.org
> 03 59 35 87 52
> Assistant: Aurore Dalle
> FAX 03 59 57 78 50
> TEL 03 59 35 86 16
> S. Ducasse - Inria
> 40, avenue Halley,
> Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
> Villeneuve d'Ascq 59650
> France
>
June 4, 2020
Re: [Pharo-users] GIS support for Pharo
by Hernán Morales Durand
Hi Stef
El jue., 4 jun. 2020 a las 11:21, Stéphane Ducasse (<
stephane.ducasse(a)inria.fr>) escribió:
> It would be good to have the related package under an umbrella.
> For example I can spend some time packaging hans package on github but
> only if it helps.
>
I already migrated to Pharo and published in Github
https://github.com/hernanmd/Shapes
so you may use that one if you like
Cheers,
Hernán
> So let me know.
>
> S
>
> On 4 Jun 2020, at 14:15, Serge Stinckwich <serge.stinckwich(a)gmail.com>
> wrote:
>
> OpenGIS is an object-oriented meta-model for GIS. There is no
> implementation in Pharo but can give a good blueprint if we want to do
> something like that.
>
> Iâm GMT+8. So a meeting Thursday at 9am for you is great for me (2pm for
> me).
> It would be nice if Hernan can join also, but might be difficult with the
> time zone difference.
>
> Regards,
>
> Sent from my iPad
>
> On 4 Jun 2020, at 18:50, Norbert Hartl <norbert(a)hartl.name> wrote:
>
> 
>
> Am 04.06.2020 um 12:31 schrieb Serge Stinckwich <
> serge.stinckwich(a)gmail.com>:
>
>
>
> On Thu, Jun 4, 2020 at 4:11 PM Norbert Hartl <norbert(a)hartl.name> wrote:
>
>> I started this initiative for our company because we are in the mobility
>> bubsiness where maps and geo centric things are important. It is not
>> elaborate as a real GIS support but a start. So here my secret plan:
>>
>>
> Thank you Norbert for your interest on that topic.
> I put Etienne Delay because he is not ont the pharo-users mailing-list and
> I'm working with him on GIS issues for CORMAS.
>
> - GeoJSON [1] was done because web services came up with that format to
>> exchange geo shape information. Furthermore database like MongoDB changed
>> their internal support for 2d/2dsphere indexes also to GeoJSON. There is a
>> package GeoJSON-Voyage which is start of a helper to easily store Geo data
>> in voyage-mongo.
>>
>> - I started to do a KML Reader [2] because besides GeoJSON that is a
>> widely used format. And this can be used in Google Earth which is the best
>> free Geo editor that I know.
>>
>> - As KML and GeoJSON use a similar model for representing geo shapes and
>> POIs I started to factor out that into the Geography package [3].
>>
>> - At the moment in the Geography package there is only a 2D point class
>> GGPoint to have something to hold geo coordinates (there is also a 3D
>> variant). In the past I used Point as the class for these things but came
>> to the conclusion that there is a distinction between a point and geo point
>> when it comes to things like distance etc. So it is better to have them
>> separate. Into this model I want to morph the classes for LineStrings,
>> LinearRings, Polygons etc. from GeoJSON and KML to have a common foundation
>> for the basic geo shapes lines, multi-lines, closed multi-lines (=polygons)
>> etc.
>>
>> - As GGPoint is distinct to Point this is just the context where you use
>> it. The Geography package should be a companion to the Geometry package [4]
>> which I forked from TelescopeSt to make it a community package which is
>> good for this plan but also for roassal which uses the Geometry package. To
>> me the geoX model should be switched between Geometry and Geography
>> regarding to the context you want to work in being planar or spherical.
>>
>> - In my tools that I build this model classes have also gt-inspector
>> extension so the shapes can be viewed just by inspecting them. I'm fighting
>> with the roassal team to make it possible for geo coordinates which
>> conflicts at the moment with their defined thresholds. But with the
>> factoring the shapes into Geography I will move those extension to the
>> Geography package as well
>>
>> - I also implemented a polygon intersection algorithm (Weiler and
>> Atherton) which I will then incorporate in any of the GeoX packages
>>
>>
> You have done a lot of work. And we add all the work done by Hernan on
> supporting ESRI shapefiles, we have already a good start.
>
> Etienne also mention the OpenGIS model in this issue:
> https://github.com/cormas/cormas/issues/139
>
> From what I understood, OpenGIS model crosscut many points of the
> Geography package:
> http://portal.opengeospatial.org/files/?artifact_id=25355
>
> So these are the pieces that are there. The plan in text is:
>>
>> - Have a incarnation of a "point" and make that switch context from
>> planar to spherical
>> - Use planar treatment with the Geometry package (intersections etc.)
>> - Use this "point" to generate shapes either geometric or geographic
>> - Be able to read and write in common formats like GeoJSON and KML
>> - Make shapes be composable and inspectable with the existing tools
>>
>> I think GIS needs more but what we have is more than just a start. The
>> projection system with the current code is WGS84 for sure. If there are
>> other needs we need to think about this early.
>>
>> For everything else I'm open ears. Even for the idea of having a
>> pharo-gis github project to collect those things to a common place. But I
>> like to discuss GIS and not if it makes sense to have a all of these github
>> repos.
>>
>
> We can try to do an online meeting to discuss about that with Etienne and
> other people interested by this topic.
> We are mostly interested to have GIS support on CORMAS, so having a common
> repository will definitively help us.
> At the moment we are using Roassal2 for CORMAS visualisatin and we are
> moving towards Roassal3.
>
>
> Good idea! I just created the Geography package because I felt the need
> for it. But if there is something better I would like to use this instead.
> I'm generally available the best at wednesdays and thursdays. Next week is
> already stuffed but if you propose some DateAndTimes I'm sure we find a
> match. Which timezone are you in at the moment?
>
> Norbert
>
> Regards,
> --
> Serge Stinckwic
> h
> https://twitter.com/SergeStinckwich
>
>
>
> --------------------------------------------
> Stéphane Ducasse
> http://stephane.ducasse.free.fr / http://www.pharo.org
> 03 59 35 87 52
> Assistant: Aurore Dalle
> FAX 03 59 57 78 50
> TEL 03 59 35 86 16
> S. Ducasse - Inria
> 40, avenue Halley,
> Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
> Villeneuve d'Ascq 59650
> France
>
>
June 4, 2020
Re: [Pharo-users] GIS support for Pharo
by Hernán Morales Durand
Hi Hans,
El jue., 4 jun. 2020 a las 6:07, Baveco, Hans (<hans.baveco(a)wur.nl>)
escribió:
> Would be an interesting project..
>
> An old link to possibly still useful code:
>
>
>
> http://wiki.squeak.org/squeak/3317
>
>
>
>
>
> Btw the shapefile support, from the ESRI spec, was done by me and is still
> available on http://www.squeaksource.com/@CUT95k_uXmPU4uXY/HCmgtrop.
>
Thank you for the clarification (and actually sharing your work with ESRI
files!)
I added proper credits in the Github forked repo :
https://github.com/hernanmd/Shapes
> I use it daily. I may have some fixes/additions, but in general the code
> as provided works well (I suppose the code at smalltalkhub is still mostly
> the same). Some shapefile formats are still missing, mostly because I never
> encountered them..
>
You mean some types are missing? Because I get this error when I try to
read some SHP files: "Types > 20 are not yet accounted for"
I wrote this script to reproduce:
| shpE legend urlRoot urlESRIFilePrefix urlESRIFileShp urlPath response
fileRef |
" Download Shapefile resources "
urlRoot := '
https://github.com/nvkelso/natural-earth-vector/blob/master/110m_cultural/'.
urlESRIFilePrefix := 'ne_110m_populated_places'.
urlESRIFileShp := urlESRIFilePrefix , '.shp'.
urlPath := urlRoot , urlESRIFilePrefix.
#('.shx' '.dbf' '.shp') do: [ : ext |
| url |
url := (urlPath , ext , '?raw=true') asZnUrl.
(response := ZnEasy get: url) isSuccess
ifFalse: [ self error: 'Cannot download file' ].
fileRef := FileSystem disk workingDirectory / (urlESRIFilePrefix , ext).
fileRef writeStreamDo: [ : stream |
stream nextPutAll: ((ZnByteEncoder newForEncoding: 'koi8r') decodeBytes:
response contents ) ] ].
Once downloaded:
| urlESRIFilePrefix urlESRIFileShp shpE |
urlESRIFilePrefix := 'ne_110m_populated_places'.
urlESRIFileShp := urlESRIFilePrefix , '.shp'.
" Load and display it in Morphic "
shpE := ShapeEnsemble fromFile: urlESRIFileShp.
Maybe it's related with the fact they are encoded as koi8r?
I checked with Zinc downloading first from the browser:
| shpFile |
shpFile := 'ne_110m_admin_0_countries.shp' asFileReference.
[ shpFile binaryReadStreamDo: [ : in |
(ZnCharacterEncoder detectEncoding: in upToEnd) identifier
] ]
on: ZnCharacterEncodingError
do: [ nil ].
Cheers,
Hernán
To read a complete shapefile one also needs to read dbf files. This was
> another substantial effort
> http://www.squeaksource.com/@Y4HhnL90iyA2TmAb/X0sPqshM; luckily there
> was an older implementation.available to build upon.
>
> Not sure whether nowadays there are other ways to read/write files old
> DBASE format files...
>
>
>
> Cheers,
>
>
>
> Hans Baveco
>
>
>
>
>
>
>
>
>
> *From:* Serge Stinckwich <serge.stinckwich(a)gmail.com>
> *Sent:* donderdag 4 juni 2020 5:32
> *To:* Any question about pharo is welcome <pharo-users(a)lists.pharo.org>
> *Subject:* [Pharo-users] GIS support for Pharo
>
>
>
> 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 Zweidenker: https://github.com/zweidenker/GeoJSON
>
> - ESRI ascii raster, done by Stephane recently:
> https://github.com/Ducasse/ESRI-ASCII-Raster
>
> - shapefile support by Hernan: http://smalltalkhub.com/#!/~hernan/Shapes
>
> (to be moved to github)
>
> - I found this project also: http://www.squeaksource.com/gekon.html
>
>
>
> I know that Etienne Delay is also interested by GIS support and propose to
> implement OpenGIS model support:
> https://github.com/cormas/cormas/issues/139
>
>
>
> Can we try to unite and maybe create a pharo-GIS organization on github to
> federate our efforts?
>
>
> Cheers,
>
> --
>
> Serge Stinckwic
>
> h
>
> https://twitter.com/SergeStinckwich
>
>
>
June 4, 2020
Re: [Pharo-users] Moose install
by Stéphane Ducasse
Moose is running on all three platforms.
The team is using Pharo 80.
Would be good that they reply but there are more on discord.
S.
> On 4 Jun 2020, at 21:30, Michael Burns <michaelburns(a)mac.com> wrote:
>
>
> From: Michael Burns <michaelburns(a)mac.com>
> Subject: Re: Moose install
> Date: 4 June 2020 at 21:30:51 CEST
> To: Stéphane Ducasse <stephane.ducasse(a)inria.fr>
> Cc: Michael Burns <michaelburns(a)mac.com>, "pharo-users(a)lists.pharo.org" <pharo-users(a)lists.pharo.org>
>
>
> Three questions:
>
> 1) What is the proper way to undo the Moose that I installed incorrectly?
>
> 2) Iâve found (I think) the GitHub repo for Moose. https://github.com/moosetechnology/Moose <https://github.com/moosetechnology/Moose>
>
> Looking closely at the .travis.yml file:
>
> smalltalk:
> - Pharo64-9.0
> - Pharo64-8.0
> It looks like it is supported on Pharo 8 or 9. Iâm using 8
>
> 3) However, I also see this:
>
>
> os:
> - linux
>
> Does this mean it only is supported on linux?
>
>
>> On Jun 4, 2020, at 3:08 AM, Stéphane Ducasse <stephane.ducasse(a)inria.fr <mailto:stephane.ducasse@inria.fr>> wrote:
>>
>> I do not think that Moose should be loaded like that.
>> you can obtain a build from the launcher and all the code should be hosted on github now.
>>
>> S.
>>
>>> On 3 Jun 2020, at 22:52, Michael Burns <michaelburns(a)mac.com <mailto:michaelburns@mac.com>> wrote:
>>>
>>>
>>> From: Michael Burns <michaelburns(a)mac.com <mailto:michaelburns@mac.com>>
>>> Subject: Moose install
>>> Date: 3 June 2020 at 22:52:10 CEST
>>> To: "pharo-users(a)lists.pharo.org <mailto:pharo-users@lists.pharo.org>" <pharo-users(a)lists.pharo.org <mailto:pharo-users@lists.pharo.org>>
>>>
>>>
>>> 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
>>>
>>> However, in the Transcript I found a number of <ClassName> is Undeclared.
>>>> And at the end: Error: Cannot resolve symbolic version #release1
>>>
>>> On the positive side, testRunner says that all Moose*-Tests test cases pass.
>>>
>>> Am I good?
>>> Or is there something else to do here?
>>> On the MooseTechnology page it seems to indicate that the latest version they have runs on Pharo 7.
>>>
>>> ...finished 1.0
>>> Fetched -> ConfigurationOfMoose-TudorGirba.364 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/> --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/>
>>> Loaded -> ConfigurationOfMoose-TudorGirba.364 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/> --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/>
>>> Loading 5.0 of ConfigurationOfMoose...
>>> Fetched -> ConfigurationOfPastell-TorstenBergmann.13 --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ <http://smalltalkhub.com/mc/PharoExtras/Pastell/main/> --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ <http://smalltalkhub.com/mc/PharoExtras/Pastell/main/>
>>> Loaded -> ConfigurationOfPastell-TorstenBergmann.13 --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ <http://smalltalkhub.com/mc/PharoExtras/Pastell/main/> --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ <http://smalltalkhub.com/mc/PharoExtras/Pastell/main/>
>>> Fetched -> ConfigurationOfPetitParser-AndreiChis.82 --- http://smalltalkhub.com/mc/Moose/PetitParser/main/ <http://smalltalkhub.com/mc/Moose/PetitParser/main/> --- http://smalltalkhub.com/mc/Moose/PetitParser/main/ <http://smalltalkhub.com/mc/Moose/PetitParser/main/>
>>> Loaded -> ConfigurationOfPetitParser-AndreiChis.82 --- http://smalltalkhub.com/mc/Moose/PetitParser/main/ <http://smalltalkhub.com/mc/Moose/PetitParser/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfMetanool-GeorgeGanea.21 --- http://smalltalkhub.com/mc/Moose/Metanool/main/ <http://smalltalkhub.com/mc/Moose/Metanool/main/> --- http://smalltalkhub.com/mc/Moose/Metanool/main/ <http://smalltalkhub.com/mc/Moose/Metanool/main/>
>>> Loaded -> ConfigurationOfMetanool-GeorgeGanea.21 --- http://smalltalkhub.com/mc/Moose/Metanool/main/ <http://smalltalkhub.com/mc/Moose/Metanool/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfGlamour-TudorGirba.225 --- http://smalltalkhub.com/mc/Moose/Glamour/main/ <http://smalltalkhub.com/mc/Moose/Glamour/main/> --- http://smalltalkhub.com/mc/Moose/Glamour/main/ <http://smalltalkhub.com/mc/Moose/Glamour/main/>
>>> Loaded -> ConfigurationOfGlamour-TudorGirba.225 --- http://smalltalkhub.com/mc/Moose/Glamour/main/ <http://smalltalkhub.com/mc/Moose/Glamour/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfGToolkit-GeorgeGanea.97 --- http://smalltalkhub.com/mc/Moose/GToolkit/main/ <http://smalltalkhub.com/mc/Moose/GToolkit/main/> --- http://smalltalkhub.com/mc/Moose/GToolkit/main/ <http://smalltalkhub.com/mc/Moose/GToolkit/main/>
>>> Loaded -> ConfigurationOfGToolkit-GeorgeGanea.97 --- http://smalltalkhub.com/mc/Moose/GToolkit/main/ <http://smalltalkhub.com/mc/Moose/GToolkit/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfXMLParser-monty.353 --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ <http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/> --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ <http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/>
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (DTDCachingExternalEntityResolver is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLAbstractFactory is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLFileHandle is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLParserLimits is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLStreamConverter is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLClassFinder is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLClassFinder is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (DTDCachingExternalEntityResolver is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLAbstractFactory is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLFileHandle is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLParserLimits is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLStatelessStreamConverter is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLStreamConverter is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLClassFinder is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLClassFinder is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (DTDCachingExternalEntityResolver is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLAbstractFactory is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLFileHandle is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLParserLimits is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLStatelessStreamConverter is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLStreamConverter is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLClassFinder is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLTokenizerState is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (DTDCachingExternalEntityResolver is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLAbstractFactory is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLFileHandle is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLParserLimits is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLStreamConverter is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLStatelessStreamConverter is Undeclared)
>>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLTokenizerState is Undeclared)
>>> Loaded -> ConfigurationOfXMLParser-monty.353 --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ <http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/> --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ <http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/>
>>> Fetched -> ConfigurationOfPetitSQLParser-GeorgeGanea.34 --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/ <http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/> --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/ <http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/>
>>> Loaded -> ConfigurationOfPetitSQLParser-GeorgeGanea.34 --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/ <http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfMooseAlgos-AndreiChis.60 --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/ <http://smalltalkhub.com/mc/Moose/MooseAlgos/main/> --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/ <http://smalltalkhub.com/mc/Moose/MooseAlgos/main/>
>>> Loaded -> ConfigurationOfMooseAlgos-AndreiChis.60 --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/ <http://smalltalkhub.com/mc/Moose/MooseAlgos/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfOSProcess-ThierryGoubier.41 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/> --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/>
>>> Loaded -> ConfigurationOfOSProcess-ThierryGoubier.41 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfMerlin-GeorgeGanea.48 --- http://smalltalkhub.com/mc/Moose/Merlin/main/ <http://smalltalkhub.com/mc/Moose/Merlin/main/> --- http://smalltalkhub.com/mc/Moose/Merlin/main/ <http://smalltalkhub.com/mc/Moose/Merlin/main/>
>>> Loaded -> ConfigurationOfMerlin-GeorgeGanea.48 --- http://smalltalkhub.com/mc/Moose/Merlin/main/ <http://smalltalkhub.com/mc/Moose/Merlin/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfRoelTyper-StephaneDucasse.3 --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/ <http://smalltalkhub.com/mc/RMoD/RoelTyper/main/> --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/ <http://smalltalkhub.com/mc/RMoD/RoelTyper/main/>
>>> Loaded -> ConfigurationOfRoelTyper-StephaneDucasse.3 --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/ <http://smalltalkhub.com/mc/RMoD/RoelTyper/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfFame-CyrilFerlicot.40 --- http://smalltalkhub.com/mc/Moose/Fame/main/ <http://smalltalkhub.com/mc/Moose/Fame/main/> --- http://smalltalkhub.com/mc/Moose/Fame/main/ <http://smalltalkhub.com/mc/Moose/Fame/main/>
>>> Loaded -> ConfigurationOfFame-CyrilFerlicot.40 --- http://smalltalkhub.com/mc/Moose/Fame/main/ <http://smalltalkhub.com/mc/Moose/Fame/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfSmallDude-GeorgeGanea.41 --- http://smalltalkhub.com/mc/Moose/SmallDude/main/ <http://smalltalkhub.com/mc/Moose/SmallDude/main/> --- http://smalltalkhub.com/mc/Moose/SmallDude/main/ <http://smalltalkhub.com/mc/Moose/SmallDude/main/>
>>> Loaded -> ConfigurationOfSmallDude-GeorgeGanea.41 --- http://smalltalkhub.com/mc/Moose/SmallDude/main/ <http://smalltalkhub.com/mc/Moose/SmallDude/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> ConfigurationOfRoassal2-AlexandreBergel.144 --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/ <http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/> --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/ <http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/>
>>> Loaded -> ConfigurationOfRoassal2-AlexandreBergel.144 --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/ <http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Fetched -> Moose-Help-TudorGirba.5 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Famix-Specifications-TudorGirba.7 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-HismoImporter-gl.12 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-Test-HismoImporter-StephanEggermont.5 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Arki-Reporter-Core-AndreHora.21 --- http://smalltalkhub.com/mc/Moose/Arki/main/ <http://smalltalkhub.com/mc/Moose/Arki/main/> --- http://smalltalkhub.com/mc/Moose/Arki/main/ <http://smalltalkhub.com/mc/Moose/Arki/main/>
>>> Fetched -> Arki-Tests-Reporter-TudorGirba.9 --- http://smalltalkhub.com/mc/Moose/Arki/main/ <http://smalltalkhub.com/mc/Moose/Arki/main/> --- http://smalltalkhub.com/mc/Moose/Arki/main/ <http://smalltalkhub.com/mc/Moose/Arki/main/>
>>> Fetched -> Famix-Tests-C-AndreHora.6 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Famix-Tests-Extensions-TudorGirba.25 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Dynamix-Tests-Core-TudorGirba.17 --- http://smalltalkhub.com/mc/Moose/DynaMoose/main/ <http://smalltalkhub.com/mc/Moose/DynaMoose/main/> --- http://smalltalkhub.com/mc/Moose/DynaMoose/main/ <http://smalltalkhub.com/mc/Moose/DynaMoose/main/>
>>> Fetched -> Moose-TestResources-Reference-Core-TudorGirba.3 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-Reference-PackageOne-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-LAN-AndreHora.7 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-LCOM-AndreHora.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P4FullInteracted-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P6InteractedReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P5FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P1FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P2InteractedReferencerReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P3InteractedReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P7ReferencerReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P8FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P9FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P10InteractedReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P11FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P12FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P13FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-P14FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-KGB-PExtensions-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-PackageBlueprint-P1-NicolasAnquetil.2 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-PackageBlueprint-P2-JeanRemyFalleri.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-PackageBlueprint-P3-JeanRemyFalleri.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-TestResources-PackageBlueprint-P4-JeanRemyFalleri.3 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Fetched -> Moose-Tests-MonticelloImporter-AndreHora.6 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>>> Project: Metanool stable
>>> [1.2]
>>> Fetched -> ConfigurationOfMagritte3-AndreiChis.128 --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/ <http://smalltalkhub.com/mc/Magritte/Magritte3/main/> --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/ <http://smalltalkhub.com/mc/Magritte/Magritte3/main/>
>>> Loaded -> ConfigurationOfMagritte3-AndreiChis.128 --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/ <http://smalltalkhub.com/mc/Magritte/Magritte3/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>>> Project: Magritte3 stable
>>> [3.5.2]
>>> Fetched -> ConfigurationOfGrease-CyrilFerlicot.349 --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ <http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/> --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ <http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/>
>>> Loaded -> ConfigurationOfGrease-CyrilFerlicot.349 --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ <http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/> --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ <http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/>
>>> Error: Cannot resolve symbolic version #release1
>>>
>>>
>>>
>>>
>>
>> --------------------------------------------
>> Stéphane Ducasse
>> http://stephane.ducasse.free.fr <http://stephane.ducasse.free.fr/> / http://www.pharo.org <http://www.pharo.org/>
>> 03 59 35 87 52
>> Assistant: Aurore Dalle
>> FAX 03 59 57 78 50
>> TEL 03 59 35 86 16
>> S. Ducasse - Inria
>> 40, avenue Halley,
>> Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
>> Villeneuve d'Ascq 59650
>> France
>>
>
>
>
--------------------------------------------
Stéphane Ducasse
http://stephane.ducasse.free.fr / http://www.pharo.org
03 59 35 87 52
Assistant: Aurore Dalle
FAX 03 59 57 78 50
TEL 03 59 35 86 16
S. Ducasse - Inria
40, avenue Halley,
Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
Villeneuve d'Ascq 59650
France
June 4, 2020
Re: Moose install
by Michael Burns
Three questions:
1) What is the proper way to undo the Moose that I installed incorrectly?
2) Iâve found (I think) the GitHub repo for Moose. https://github.com/moosetechnology/Moose <https://github.com/moosetechnology/Moose>
Looking closely at the .travis.yml file:
smalltalk:
- Pharo64-9.0
- Pharo64-8.0
It looks like it is supported on Pharo 8 or 9. Iâm using 8
3) However, I also see this:
os:
- linux
Does this mean it only is supported on linux?
> On Jun 4, 2020, at 3:08 AM, Stéphane Ducasse <stephane.ducasse(a)inria.fr> wrote:
>
> I do not think that Moose should be loaded like that.
> you can obtain a build from the launcher and all the code should be hosted on github now.
>
> S.
>
>> On 3 Jun 2020, at 22:52, Michael Burns <michaelburns(a)mac.com <mailto:michaelburns@mac.com>> wrote:
>>
>>
>> From: Michael Burns <michaelburns(a)mac.com <mailto:michaelburns@mac.com>>
>> Subject: Moose install
>> Date: 3 June 2020 at 22:52:10 CEST
>> To: "pharo-users(a)lists.pharo.org <mailto:pharo-users@lists.pharo.org>" <pharo-users(a)lists.pharo.org <mailto:pharo-users@lists.pharo.org>>
>>
>>
>> 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
>>
>> However, in the Transcript I found a number of <ClassName> is Undeclared.
>>> And at the end: Error: Cannot resolve symbolic version #release1
>>
>> On the positive side, testRunner says that all Moose*-Tests test cases pass.
>>
>> Am I good?
>> Or is there something else to do here?
>> On the MooseTechnology page it seems to indicate that the latest version they have runs on Pharo 7.
>>
>> ...finished 1.0
>> Fetched -> ConfigurationOfMoose-TudorGirba.364 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/> --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/>
>> Loaded -> ConfigurationOfMoose-TudorGirba.364 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/> --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/>
>> Loading 5.0 of ConfigurationOfMoose...
>> Fetched -> ConfigurationOfPastell-TorstenBergmann.13 --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ <http://smalltalkhub.com/mc/PharoExtras/Pastell/main/> --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ <http://smalltalkhub.com/mc/PharoExtras/Pastell/main/>
>> Loaded -> ConfigurationOfPastell-TorstenBergmann.13 --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ <http://smalltalkhub.com/mc/PharoExtras/Pastell/main/> --- http://smalltalkhub.com/mc/PharoExtras/Pastell/main/ <http://smalltalkhub.com/mc/PharoExtras/Pastell/main/>
>> Fetched -> ConfigurationOfPetitParser-AndreiChis.82 --- http://smalltalkhub.com/mc/Moose/PetitParser/main/ <http://smalltalkhub.com/mc/Moose/PetitParser/main/> --- http://smalltalkhub.com/mc/Moose/PetitParser/main/ <http://smalltalkhub.com/mc/Moose/PetitParser/main/>
>> Loaded -> ConfigurationOfPetitParser-AndreiChis.82 --- http://smalltalkhub.com/mc/Moose/PetitParser/main/ <http://smalltalkhub.com/mc/Moose/PetitParser/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfMetanool-GeorgeGanea.21 --- http://smalltalkhub.com/mc/Moose/Metanool/main/ <http://smalltalkhub.com/mc/Moose/Metanool/main/> --- http://smalltalkhub.com/mc/Moose/Metanool/main/ <http://smalltalkhub.com/mc/Moose/Metanool/main/>
>> Loaded -> ConfigurationOfMetanool-GeorgeGanea.21 --- http://smalltalkhub.com/mc/Moose/Metanool/main/ <http://smalltalkhub.com/mc/Moose/Metanool/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfGlamour-TudorGirba.225 --- http://smalltalkhub.com/mc/Moose/Glamour/main/ <http://smalltalkhub.com/mc/Moose/Glamour/main/> --- http://smalltalkhub.com/mc/Moose/Glamour/main/ <http://smalltalkhub.com/mc/Moose/Glamour/main/>
>> Loaded -> ConfigurationOfGlamour-TudorGirba.225 --- http://smalltalkhub.com/mc/Moose/Glamour/main/ <http://smalltalkhub.com/mc/Moose/Glamour/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfGToolkit-GeorgeGanea.97 --- http://smalltalkhub.com/mc/Moose/GToolkit/main/ <http://smalltalkhub.com/mc/Moose/GToolkit/main/> --- http://smalltalkhub.com/mc/Moose/GToolkit/main/ <http://smalltalkhub.com/mc/Moose/GToolkit/main/>
>> Loaded -> ConfigurationOfGToolkit-GeorgeGanea.97 --- http://smalltalkhub.com/mc/Moose/GToolkit/main/ <http://smalltalkhub.com/mc/Moose/GToolkit/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfXMLParser-monty.353 --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ <http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/> --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ <http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/>
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (DTDCachingExternalEntityResolver is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLAbstractFactory is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLFileHandle is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLParserLimits is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLStreamConverter is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLClassFinder is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline297 (XMLClassFinder is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (DTDCachingExternalEntityResolver is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLAbstractFactory is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLFileHandle is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLParserLimits is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLStatelessStreamConverter is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLStreamConverter is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLClassFinder is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline312 (XMLClassFinder is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (DTDCachingExternalEntityResolver is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLAbstractFactory is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLFileHandle is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLParserLimits is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLStatelessStreamConverter is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLStreamConverter is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLClassFinder is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline321 (XMLTokenizerState is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (DTDCachingExternalEntityResolver is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLAbstractFactory is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLFileHandle is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLParserLimits is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLStreamConverter is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLStatelessStreamConverter is Undeclared)
>> ConfigurationOfXMLParser>>initializeClassesForGSBaseline332 (XMLTokenizerState is Undeclared)
>> Loaded -> ConfigurationOfXMLParser-monty.353 --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ <http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/> --- http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/ <http://smalltalkhub.com/mc/PharoExtras/XMLParser/main/>
>> Fetched -> ConfigurationOfPetitSQLParser-GeorgeGanea.34 --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/ <http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/> --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/ <http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/>
>> Loaded -> ConfigurationOfPetitSQLParser-GeorgeGanea.34 --- http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/ <http://smalltalkhub.com/mc/Moose/PetitSQLParser/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfMooseAlgos-AndreiChis.60 --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/ <http://smalltalkhub.com/mc/Moose/MooseAlgos/main/> --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/ <http://smalltalkhub.com/mc/Moose/MooseAlgos/main/>
>> Loaded -> ConfigurationOfMooseAlgos-AndreiChis.60 --- http://smalltalkhub.com/mc/Moose/MooseAlgos/main/ <http://smalltalkhub.com/mc/Moose/MooseAlgos/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfOSProcess-ThierryGoubier.41 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/> --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/>
>> Loaded -> ConfigurationOfOSProcess-ThierryGoubier.41 --- http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/ <http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfMerlin-GeorgeGanea.48 --- http://smalltalkhub.com/mc/Moose/Merlin/main/ <http://smalltalkhub.com/mc/Moose/Merlin/main/> --- http://smalltalkhub.com/mc/Moose/Merlin/main/ <http://smalltalkhub.com/mc/Moose/Merlin/main/>
>> Loaded -> ConfigurationOfMerlin-GeorgeGanea.48 --- http://smalltalkhub.com/mc/Moose/Merlin/main/ <http://smalltalkhub.com/mc/Moose/Merlin/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfRoelTyper-StephaneDucasse.3 --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/ <http://smalltalkhub.com/mc/RMoD/RoelTyper/main/> --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/ <http://smalltalkhub.com/mc/RMoD/RoelTyper/main/>
>> Loaded -> ConfigurationOfRoelTyper-StephaneDucasse.3 --- http://smalltalkhub.com/mc/RMoD/RoelTyper/main/ <http://smalltalkhub.com/mc/RMoD/RoelTyper/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfFame-CyrilFerlicot.40 --- http://smalltalkhub.com/mc/Moose/Fame/main/ <http://smalltalkhub.com/mc/Moose/Fame/main/> --- http://smalltalkhub.com/mc/Moose/Fame/main/ <http://smalltalkhub.com/mc/Moose/Fame/main/>
>> Loaded -> ConfigurationOfFame-CyrilFerlicot.40 --- http://smalltalkhub.com/mc/Moose/Fame/main/ <http://smalltalkhub.com/mc/Moose/Fame/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfSmallDude-GeorgeGanea.41 --- http://smalltalkhub.com/mc/Moose/SmallDude/main/ <http://smalltalkhub.com/mc/Moose/SmallDude/main/> --- http://smalltalkhub.com/mc/Moose/SmallDude/main/ <http://smalltalkhub.com/mc/Moose/SmallDude/main/>
>> Loaded -> ConfigurationOfSmallDude-GeorgeGanea.41 --- http://smalltalkhub.com/mc/Moose/SmallDude/main/ <http://smalltalkhub.com/mc/Moose/SmallDude/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> ConfigurationOfRoassal2-AlexandreBergel.144 --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/ <http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/> --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/ <http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/>
>> Loaded -> ConfigurationOfRoassal2-AlexandreBergel.144 --- http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/ <http://smalltalkhub.com/mc/ObjectProfile/Roassal2/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Fetched -> Moose-Help-TudorGirba.5 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Famix-Specifications-TudorGirba.7 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-HismoImporter-gl.12 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-Test-HismoImporter-StephanEggermont.5 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Arki-Reporter-Core-AndreHora.21 --- http://smalltalkhub.com/mc/Moose/Arki/main/ <http://smalltalkhub.com/mc/Moose/Arki/main/> --- http://smalltalkhub.com/mc/Moose/Arki/main/ <http://smalltalkhub.com/mc/Moose/Arki/main/>
>> Fetched -> Arki-Tests-Reporter-TudorGirba.9 --- http://smalltalkhub.com/mc/Moose/Arki/main/ <http://smalltalkhub.com/mc/Moose/Arki/main/> --- http://smalltalkhub.com/mc/Moose/Arki/main/ <http://smalltalkhub.com/mc/Moose/Arki/main/>
>> Fetched -> Famix-Tests-C-AndreHora.6 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Famix-Tests-Extensions-TudorGirba.25 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Dynamix-Tests-Core-TudorGirba.17 --- http://smalltalkhub.com/mc/Moose/DynaMoose/main/ <http://smalltalkhub.com/mc/Moose/DynaMoose/main/> --- http://smalltalkhub.com/mc/Moose/DynaMoose/main/ <http://smalltalkhub.com/mc/Moose/DynaMoose/main/>
>> Fetched -> Moose-TestResources-Reference-Core-TudorGirba.3 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-Reference-PackageOne-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-LAN-AndreHora.7 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-LCOM-AndreHora.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P4FullInteracted-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P6InteractedReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P5FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P1FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P2InteractedReferencerReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P3InteractedReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P7ReferencerReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P8FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P9FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P10InteractedReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P11FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P12FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P13FullReferencer-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-P14FullReferee-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-KGB-PExtensions-tg.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-PackageBlueprint-P1-NicolasAnquetil.2 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-PackageBlueprint-P2-JeanRemyFalleri.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-PackageBlueprint-P3-JeanRemyFalleri.1 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-TestResources-PackageBlueprint-P4-JeanRemyFalleri.3 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Fetched -> Moose-Tests-MonticelloImporter-AndreHora.6 --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/> --- http://smalltalkhub.com/mc/Moose/Moose/main/ <http://smalltalkhub.com/mc/Moose/Moose/main/>
>> Project: Metanool stable
>> [1.2]
>> Fetched -> ConfigurationOfMagritte3-AndreiChis.128 --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/ <http://smalltalkhub.com/mc/Magritte/Magritte3/main/> --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/ <http://smalltalkhub.com/mc/Magritte/Magritte3/main/>
>> Loaded -> ConfigurationOfMagritte3-AndreiChis.128 --- http://smalltalkhub.com/mc/Magritte/Magritte3/main/ <http://smalltalkhub.com/mc/Magritte/Magritte3/main/> --- /Users/Michael/Documents/Pharo/images/Pharo 8.0 - 64bit (stable)/pharo-local/package-cache
>> Project: Magritte3 stable
>> [3.5.2]
>> Fetched -> ConfigurationOfGrease-CyrilFerlicot.349 --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ <http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/> --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ <http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/>
>> Loaded -> ConfigurationOfGrease-CyrilFerlicot.349 --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ <http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/> --- http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/ <http://smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main/>
>> Error: Cannot resolve symbolic version #release1
>>
>>
>>
>>
>
> --------------------------------------------
> Stéphane Ducasse
> http://stephane.ducasse.free.fr <http://stephane.ducasse.free.fr/> / http://www.pharo.org <http://www.pharo.org/>
> 03 59 35 87 52
> Assistant: Aurore Dalle
> FAX 03 59 57 78 50
> TEL 03 59 35 86 16
> S. Ducasse - Inria
> 40, avenue Halley,
> Parc Scientifique de la Haute Borne, Bât.A, Park Plaza
> Villeneuve d'Ascq 59650
> France
>
June 4, 2020
Re: [Pharo-users] GIS support for Pharo
by Todd Blanchard
Hi Serge,
I would love to participate in getting some GIS features into Pharo. I think it would be a fantastic platform for GIS.
My personal orientation is doing marine navigation (have boat with sensors, want boat to be be smarter about navigation).
My main interests is in being able to render S57/S52 formats. There are a number of boat fans that balk at the price of expensive chart plotter computers and software.
They have given rise to some DIY stuff. Some of it just rips code straight out of https://gdal.org - I think possibly a FFI integration with gdal might be an amazing resource.
I am time constrained for when I can work on this stuff but would like it a lot if we at least had some core data types for simple things like lat/lng, regions (polygons), and a decent general map renderer.
Anyhow, please include me in any conversations. Navigation (both air and sea) are two things I have an interest in.
> On Jun 3, 2020, at 8:31 PM, Serge Stinckwich <serge.stinckwich(a)gmail.com> wrote:
>
> 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 <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 Zweidenker: https://github.com/zweidenker/GeoJSON <https://github.com/zweidenker/GeoJSON>
> - ESRI ascii raster, done by Stephane recently: https://github.com/Ducasse/ESRI-ASCII-Raster <https://github.com/Ducasse/ESRI-ASCII-Raster>
> - shapefile support by Hernan: http://smalltalkhub.com/#!/~hernan/Shapes <http://smalltalkhub.com/#!/~hernan/Shapes>
> (to be moved to github)
> - I found this project also: http://www.squeaksource.com/gekon.html <http://www.squeaksource.com/gekon.html>
>
> I know that Etienne Delay is also interested by GIS support and propose to implement OpenGIS model support: https://github.com/cormas/cormas/issues/139 <https://github.com/cormas/cormas/issues/139>
>
> Can we try to unite and maybe create a pharo-GIS organization on github to federate our efforts?
>
> Cheers,
> --
> Serge Stinckwich
> https://twitter.com/SergeStinckwich <https://twitter.com/SergeStinckwich>
June 4, 2020
Re: [Pharo-users] GIS support for Pharo
by Ben Coman
On Thu, 4 Jun 2020 at 16:12, Norbert Hartl <norbert(a)hartl.name> wrote:
> I think GIS needs more but what we have is more than just a start. The
> projection system with the current code is WGS84 for sure. If there are
> other needs we need to think about this early.
>
I don't know a lot about it, but in trying to learn I bumped into some
interesting articles from an Australian perspective...
https://www.spatialsource.com.au/company-industry/new-world-earth-fixed-dat…
https://www.ga.gov.au/scientific-topics/positioning-navigation/wgs84
https://www.spatial.nsw.gov.au/__data/assets/pdf_file/0008/224396/WGS84_and…
https://www.icsm.gov.au/sites/default/files/DatumMattersFactSheet1_0.pdf
cheers -ben
June 4, 2020
Re: [Pharo-users] ESRI ASCII raster format
by Ben Coman
A couple of other interesting things I bumped into...
https://jblindsay.github.io/ghrg/WhiteboxTools/index.html ( MIT Licensed )
https://www.diva-portal.org/smash/get/diva2:1086367/FULLTEXT01.pdf
On Fri, 5 Jun 2020 at 01:33, Ben Coman <btc(a)openinworld.com> wrote:
> On Thu, 4 Jun 2020 at 21:00, Richard O'Keefe <raoknz(a)gmail.com> wrote:
>
>> Does anyone know of a collection of test files for this format?
>>
>
> You might be looking for smaller tests, but anyway..
>
> https://github.com/richbl/esri-ascii-parser/tree/master/sample_data
>
> https://www.planlaufterrain.com/LiDAR-Data-and-FAQ/
>
> https://library.carleton.ca/help/dem-formats
>
>
> https://data.gov.au/dataset/ds-dga-b2e1dfc6-2c7e-404a-a949-7e3e95fc4418/det…
>
>
> cheers -ben
>
>
June 4, 2020