Changes between Version 2 and Version 3 of wxGUIDevelopment/wxDataCatalog
- Timestamp:
- 10/02/15 08:16:17 (9 years ago)
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: 1 This 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 3 Current implementation in trunk allows to: 2 4 3 5 * rename maps in the current mapset 4 * remove maps inthe current mapset6 * remove maps from the current mapset 5 7 * copy maps from different mapsets into current mapsets (within the same location) 8 * drag and drop for copying 6 9 7 10 Pool for advanced features: 8 11 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) 10 14 * drag and drop maps into map canvas 11 15 * 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 21 Refactoring 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 25 See also: 26 * [http://grasswiki.osgeo.org/wiki/WxGUI#GRASS_Catalog addons implementation]