🦋 Welcome to the MAIN() IRC channel of the Raku Programming Language (raku.org). Log available at irclogs.raku.org/raku/live.html . If you're a beginner, you can also check out the #raku-beginner channel!
Set by lizmat on 6 September 2022.
roguerakudev is 7¹/₃ going to be a valid Rat literal with RakuAST then? 00:37
Xliff Heya, phogg! How are you? 03:02
kjp please do give it your support │ dg │02:49:57 lizmat | n.tell antononcube As the author of various Geo:: modules, including the Well Known Text module, I use publically available data for generating topograhic maps of areas I'm interested in. (Hence the port of Geo::Coordinates::UTM from Perl to Raku.) 03:12
Where did that rubbish come from; sorry.
.tell antononcube As the author of various Geo:: modules, including the Well Known Text module, I use publically available data for generating topograhic maps of areas I'm interested in. (Hence the port of Geo::Coordinates::UTM from Perl to Raku.) 03:13
tellable6 kjp, I'll pass your message to antononcube
phogg Xliff: tollerable 10:36
librasteve m: use v6e.PREVIEW; say 7¹/₃; 11:17
evalable6 2.333333 11:18
Raku eval 2.333333
lizmat librasteve that is fixed in the new Raku grammar only 11:46
antononcube Thanks to everyone who answered my "what are your Geo interests?" question! 14:14
tellable6 hey antononcube, you have a message: gist.github.com/6c3d00f5052fad1500...f5b0f0d07d
antononcube I made the data package "Data::Geographics" that has population, coordinates, and elevation data for the cities of 9 countries and country data for nearly 20 countries. I will add geometric shapes soon. 14:17
There is another package "DSL::Entity::Geographics" that can be used to do Named Entity Recognition (NER) of Geo-locations: countries, regions, and cities. I have to refactor it to have less data and used the data in "Data::Geographics". 14:28
Again on "Data::Geographics" -- it is faily big (≈10MB). Adding geomatric shapes data to it might make 5-10 times bigger. 14:29
Xliff m: constant SIZE = 16; use NativeCall; class A is repr<CStruct> { has uint32 $.p1; HAS pointer @.padding[SIZE] is CArray }; 16:04
camelia ===SORRY!===
Type 'pointer' is not declared. Did you mean 'Pointer'?
at <tmp>:1
------> <CStruct> { has uint32 $.p1; HAS pointer⏏ @.padding[SIZE] is CArray };
Malformed has
at <tmp>:1
------> is repr<CStruct> { has uint3…
Xliff m: constant SIZE = 16; use NativeCall; class A is repr<CStruct> { has uint32 $.p1; HAS Pointer @.padding[SIZE] is CArray };
camelia ( no output )
Xliff m: use NativeCall; class A is repr<CStruct> { has uint32 $.p1; HAS Pointer @.padding[SIZE] is CArray }; 16:08
camelia ===SORRY!===
lang-call cannot invoke object of type 'VMNull' belonging to no language
Xliff ^^ SIZE was removed because it is defined in another compunit. Even if the compunit is used, this error will occur. 16:09
lizmat Xliff: is there an issue for this already ? 16:15
Xliff No
Just found it
lizmat: Do you need me to add it? I'm in the middle of $dayJob 16:20
lizmat well, you're the stakeholder in this :-) 16:24
at your convenience :-)
antononcube @kjp Your remark about generating Geo-location maps reminded me that I wanted to include the property "LocationLink" for the city data. That is fairly straightforward, but then I would want to display that image in Jupyter... 18:14