Difference between revisions of "Talk:GRASS Community Sprint Paris 2017"
From GRASS-Wiki
(MN: + SVN log overview) |
Wenzeslaus (talk | contribs) (→Vaclav Petras) |
||
(23 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
+ | = Photos of the event = | ||
+ | * Nice collection at [https://www.flickr.com/groups/3522675@N24/pool/ Flickr] | ||
+ | |||
+ | [[Image: Paris2017sprint.jpg.jpg|500px|GRASS GIS 7 sprint team at FOSS4G 2017, France]] | ||
+ | |||
+ | GRASS GIS 7 sprint team at FOSS4G 2017, France | ||
+ | |||
+ | = Summary = | ||
+ | |||
+ | Great event, till 6pm at the venue, after that continuation in a hotel lobby. | ||
+ | |||
+ | Upcoming: '''34 years of GRASS GIS''' - 29 July 2017! | ||
+ | |||
+ | Not discussed: | ||
+ | * several items - one day is not enough :-) We will have a longer code sprint in Bonn in March 2018. | ||
+ | |||
+ | Discussed: | ||
+ | * Web CMS: MediaWiki upgrade | ||
+ | ** development of new website in Sphinx: https://git.osgeo.org/gogs/grass_gis | ||
+ | * more... to be added here | ||
+ | |||
= Participants and Reports = | = Participants and Reports = | ||
Line 4: | Line 25: | ||
* [https://trac.osgeo.org/grass/timeline?from=Jul+22%2C+2017&daysback=1&authors=martinl&milestone=on&ticket=on&changeset=on&wiki=on&update=Update SVN log] overview | * [https://trac.osgeo.org/grass/timeline?from=Jul+22%2C+2017&daysback=1&authors=martinl&milestone=on&ticket=on&changeset=on&wiki=on&update=Update SVN log] overview | ||
+ | * new functions for getting srs info based on EPSG code implemented - ''G_grass_to_osr2()'' and ''GPJ_grass_to_wkt2()'' | ||
+ | * ''g.proj -w'' is now returning the same srs info as gdalsrsinfo do for given EPSG code | ||
== Markus Neteler == | == Markus Neteler == | ||
+ | * Told MartinL about an ultra-fast and cool cmd line search tool (so much faster than "grep"): https://github.com/ggreer/the_silver_searcher | ||
+ | ** Search for a function in the source code: <tt>ag grass_to_osr</tt> | ||
+ | ** Search for a function in the source code restricted to C files only: <tt>ag --cc grass_to_osr</tt> | ||
+ | ** <tt>ag --list-file-types</tt> | ||
* FreeBSD ticket: {{trac|2940}} | * FreeBSD ticket: {{trac|2940}} | ||
+ | * v.rast.stats -d ticket: {{trac|3357}} | ||
* [https://trac.osgeo.org/grass/timeline?from=Jul+22%2C+2017&daysback=1&authors=NETELER&milestone=on&ticket=on&changeset=on&wiki=on&update=Update SVN log] overview | * [https://trac.osgeo.org/grass/timeline?from=Jul+22%2C+2017&daysback=1&authors=NETELER&milestone=on&ticket=on&changeset=on&wiki=on&update=Update SVN log] overview | ||
+ | * discussions with Astrid Emde on https://git.osgeo.org/gogs/foss4g-europe/foss4g-europe-2017-paris | ||
+ | * created a draft TGRASS workshop page [[TGRASS workshop at FOSS4G Europe Paris 2017]] from https://github.com/veroandreo/tgrass_workshop_foss4g_eu | ||
+ | * created git repo for development of a new website in Sphinx: https://git.osgeo.org/gogs/grass_gis | ||
+ | ** Note: new GOGS contributors need to be invited here (upon registration): https://git.osgeo.org/gogs/grass_gis | ||
+ | |||
+ | == Anna Petrasova == | ||
+ | |||
+ | * [https://trac.osgeo.org/grass/timeline?from=Jul+22%2C+2017&daysback=1&authors=annakrat&milestone=on&ticket=on&changeset=on&wiki=on&update=Update SVN log] overview | ||
+ | * working on improving data catalog - {{rev|71309}} adds moving and copying data between mapsets and locations, reprojects rasters and vectors, works with drag and drop too | ||
+ | |||
+ | == Vaclav Petras == | ||
+ | |||
+ | * Change wxGUI Map Display title from <tt>GRASS GIS ''version'' Map Display: ''name'' - Location: ''location@mapset''</tt> to <tt>GRASS GIS Map Display: ''name'' - ''location/mapset''</tt> ({{rev|71301}}) | ||
+ | * ''Download'' button in the startup window for beginners for downloading sample locations linked from GRASS GIS website ({{rev|71310}}). Potential improvements: Get URLs from a remote file (like addon list), input URL directly, show details, search tree (instead of choice/combo box), real (non-sample) locations. | ||
+ | * [https://trac.osgeo.org/grass/timeline?from=Jul+23%2C+2017&daysback=2&authors=wenzeslaus&milestone=on&ticket=on&changeset=on&wiki=on&update=Update Complete SVN log overview] | ||
+ | |||
+ | == Milena Nowotarska == | ||
+ | |||
+ | * translation of GRASS GIS GUI to Polish language | ||
+ | ** https://www.transifex.com/grass-gis/ | ||
+ | |||
+ | == Veronica Andreo == | ||
+ | |||
+ | * Creation of [[SENTINEL]] wiki page, basic info added and delineation of general structure for GRASS GIS examples to be added | ||
+ | * Testing of {{cmd|v.rast.stats}} ({{trac|3357}}) | ||
+ | * Add some more Spanish translated strings |
Latest revision as of 19:00, 23 July 2017
Contents
Photos of the event
- Nice collection at Flickr
GRASS GIS 7 sprint team at FOSS4G 2017, France
Summary
Great event, till 6pm at the venue, after that continuation in a hotel lobby.
Upcoming: 34 years of GRASS GIS - 29 July 2017!
Not discussed:
- several items - one day is not enough :-) We will have a longer code sprint in Bonn in March 2018.
Discussed:
- Web CMS: MediaWiki upgrade
- development of new website in Sphinx: https://git.osgeo.org/gogs/grass_gis
- more... to be added here
Participants and Reports
Martin Landa
- SVN log overview
- new functions for getting srs info based on EPSG code implemented - G_grass_to_osr2() and GPJ_grass_to_wkt2()
- g.proj -w is now returning the same srs info as gdalsrsinfo do for given EPSG code
Markus Neteler
- Told MartinL about an ultra-fast and cool cmd line search tool (so much faster than "grep"): https://github.com/ggreer/the_silver_searcher
- Search for a function in the source code: ag grass_to_osr
- Search for a function in the source code restricted to C files only: ag --cc grass_to_osr
- ag --list-file-types
- FreeBSD ticket: trac #2940
- v.rast.stats -d ticket: trac #3357
- SVN log overview
- discussions with Astrid Emde on https://git.osgeo.org/gogs/foss4g-europe/foss4g-europe-2017-paris
- created a draft TGRASS workshop page TGRASS workshop at FOSS4G Europe Paris 2017 from https://github.com/veroandreo/tgrass_workshop_foss4g_eu
- created git repo for development of a new website in Sphinx: https://git.osgeo.org/gogs/grass_gis
- Note: new GOGS contributors need to be invited here (upon registration): https://git.osgeo.org/gogs/grass_gis
Anna Petrasova
- SVN log overview
- working on improving data catalog - r71309 adds moving and copying data between mapsets and locations, reprojects rasters and vectors, works with drag and drop too
Vaclav Petras
- Change wxGUI Map Display title from GRASS GIS version Map Display: name - Location: location@mapset to GRASS GIS Map Display: name - location/mapset (r71301)
- Download button in the startup window for beginners for downloading sample locations linked from GRASS GIS website (r71310). Potential improvements: Get URLs from a remote file (like addon list), input URL directly, show details, search tree (instead of choice/combo box), real (non-sample) locations.
- Complete SVN log overview
Milena Nowotarska
- translation of GRASS GIS GUI to Polish language
Veronica Andreo
- Creation of SENTINEL wiki page, basic info added and delineation of general structure for GRASS GIS examples to be added
- Testing of v.rast.stats (trac #3357)
- Add some more Spanish translated strings