Changes between Version 20 and Version 21 of GSoC/2016/BasicCartographySuiteInGRASS


Ignore:
Timestamp:
Jun 25, 2016, 7:18:25 AM (8 years ago)
Author:
lazaa
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GSoC/2016/BasicCartographySuiteInGRASS

    v20 v21  
    2432433. Are you blocked on anything?
    244244Nope.
     245
     246 === Week 4 ===
     247Week 4, June, 13 - 18
     248
     2491. What did you get done this week?
     250I worked on the module d.legend.
     251I worked on ticket #3013. I added background and border options and option for title fontsize.
     252I worked on ticket #2714. I added logarithmic legend for raster maps.
     253
     254I worked on GUI/Workspace #2369
     255I rewrote the code so now d.text module is used instead of wxPython text.
     256
     257
     2582. What do you plan on doing next week?
     259There's still a lot of work on GUI/Workspace with d.text.
     260I need to take few days off because I won't have access to my computer. I suppose I will work more during weekend.
     261
     2623. Are you blocked on anything?
     263Nope.
     264
     265 === Week 5 ===
     266Week 5, June, 20 - 24
     267
     2681. What did you get done this week?
     269This week I was three days off so I didn't much.
     270Next week I'm coming back home from my exchange program and then I will have more time to work.
     271I worked on legend background border and fill.
     272
     273{{{
     274g.region raster=elevation -p
     275d.rast elevation
     276d.legend raster=elevation -t label_step=20 label_values=108 title=Legend -b bgcolor=255:255:204 border_color=gray
     277}}}
     278
     279[[Image(legend_ticks.png)]]
     280
     281I worked on logarithmic scale of d.legend module. It works now.
     282
     283{{{
     284g.region raster=elevation -p
     285r.watershed -a elevation=elevation threshold=1000 accumulation=flowacc
     286d.rast flowacc
     287d.legend raster=flowacc -t -l label_step=1
     288}}}
     289
     290[[Image(legend_ticks.png)]]
     291
     2922. What do you plan on doing next week?
     293Next week I'd like to start working on vector legend implementation as it's very important part of my GSoC.
     294
     2953. Are you blocked on anything?
     296I am blocked on solving one problem with GUI. I worked on adding text labels into workspace with d.text module instead of wxPython text. It works now but only if I add just one text. Next week I need to solve the problem so the user can add more texts.