| 245 | |
| 246 | === Week 4 === |
| 247 | Week 4, June, 13 - 18 |
| 248 | |
| 249 | 1. What did you get done this week? |
| 250 | I worked on the module d.legend. |
| 251 | I worked on ticket #3013. I added background and border options and option for title fontsize. |
| 252 | I worked on ticket #2714. I added logarithmic legend for raster maps. |
| 253 | |
| 254 | I worked on GUI/Workspace #2369 |
| 255 | I rewrote the code so now d.text module is used instead of wxPython text. |
| 256 | |
| 257 | |
| 258 | 2. What do you plan on doing next week? |
| 259 | There's still a lot of work on GUI/Workspace with d.text. |
| 260 | I need to take few days off because I won't have access to my computer. I suppose I will work more during weekend. |
| 261 | |
| 262 | 3. Are you blocked on anything? |
| 263 | Nope. |
| 264 | |
| 265 | === Week 5 === |
| 266 | Week 5, June, 20 - 24 |
| 267 | |
| 268 | 1. What did you get done this week? |
| 269 | This week I was three days off so I didn't much. |
| 270 | Next week I'm coming back home from my exchange program and then I will have more time to work. |
| 271 | I worked on legend background border and fill. |
| 272 | |
| 273 | {{{ |
| 274 | g.region raster=elevation -p |
| 275 | d.rast elevation |
| 276 | d.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 | |
| 281 | I worked on logarithmic scale of d.legend module. It works now. |
| 282 | |
| 283 | {{{ |
| 284 | g.region raster=elevation -p |
| 285 | r.watershed -a elevation=elevation threshold=1000 accumulation=flowacc |
| 286 | d.rast flowacc |
| 287 | d.legend raster=flowacc -t -l label_step=1 |
| 288 | }}} |
| 289 | |
| 290 | [[Image(legend_ticks.png)]] |
| 291 | |
| 292 | 2. What do you plan on doing next week? |
| 293 | Next week I'd like to start working on vector legend implementation as it's very important part of my GSoC. |
| 294 | |
| 295 | 3. Are you blocked on anything? |
| 296 | I 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. |