Changes between Version 2 and Version 3 of wxGUIDevelopment/wxDataCatalog


Ignore:
Timestamp:
Oct 2, 2015, 8:16:17 AM (9 years ago)
Author:
annakrat
Comment:

update data catalog dvelopment

Legend:

Unmodified
Added
Removed
Modified
  • wxGUIDevelopment/wxDataCatalog

    v2 v3  
    1 This page collects ideas about '''wxGUI Data Catalog''' development (see also [http://grasswiki.osgeo.org/wiki/WxGUI#GRASS_Catalog addons implementation]). The main goal is to implement an application integrated into Layer Manager (as a new tab) and standalone application as `g.gui.datacatalog` which allows:
     1This page collects ideas about '''wxGUI Data Catalog''' development. The main goal is to implement an application integrated into Layer Manager (as a new tab) and standalone application as `g.gui.datacatalog`.
     2
     3Current implementation in trunk allows to:
    24
    35 * rename maps in the current mapset
    4  * remove maps in the current mapset
     6 * remove maps from the current mapset
    57 * copy maps from different mapsets into current mapsets (within the same location)
     8 * drag and drop for copying
    69
    710Pool for advanced features:
    811
    9  * copy maps from different locations (requires reprojection)
     12 * copy maps from different locations with different projection (requires reprojection)
     13 * copy maps from different locations with the same projection (v.pack/r.pack? r3.pack missing)
    1014 * drag and drop maps into map canvas
    1115 * preview of maps
    12  * filtering maps based on pattern, bulk operations (remove, copy, rename)
    13  * search for maps
    14  * ''add your idea here...'
     16 * show metadata
     17 * searching, filtering maps based on pattern
     18 * bulk operations (remove, copy, rename)
     19 * ''add your idea here...''
     20
     21Refactoring needed before adding more features (ongoing effort by annakrat):
     22 * using !TreeModel, !TreeView (MVC approach)
     23 * separate environment for changes in different locations/mapsets
     24
     25See also:
     26 * [http://grasswiki.osgeo.org/wiki/WxGUI#GRASS_Catalog addons implementation]