[[TOC]] == GRASS GIS development == GRASS - Geographic Resources Analysis Support System has been under continual development since 1982. The strength and success of GRASS GIS relies on the user community. With this in mind, the philosophy of the GRASS Development Team is to encourage users to develop their own unique tools and applications for GRASS. If you develop tools and techniques that you feel would benefit other GRASS users, please see below how to structure code and documentation for the benefit of all: Submitting rules for: * [wiki:Submitting/General General notes] * [wiki:Submitting/C C code] * [wiki:Submitting/Python Python code] * [wiki:Submitting/wxGUI wxGUI code] (wxPython-based GUI code) * [wiki:Submitting/Docs Documentation-related notes] (HTML, MAN) * [wiki:Submitting/TclTk TCL/TK code] (GRASS GIS 4.x-6.x only) == GRASS GIS programming best practice == There are many unwritten rules how GRASS modules should work, what they should do and what they shouldn't do. There is always some reason why some things are considered as "good" or "bad", still they are just noted in some long GRASS developer mailing list conversations. These pages here aim at collecting such ideas which are floating around in the [http://lists.osgeo.org/mailman/listinfo/grass-dev GRASS-dev] mailing list (and other places) to help new module developers/bugfixers to understand many little tricks how GRASS modules should work. ''New list item adding guide'' List items should be short and general. Add only things that are relevant to all modules or module groups. There should be reason why such rule/hint exists - add reference to ML archive thread or short description why such rule is important. Look into SUBMITING documentation above for already existing specific rules. Feel free to add code/pseudocode samples, if they apply. == GRASS best practice list (unsorted) == * Read the SUBMITTING rules above * All GRASS modules should accept map names in format "map@mapset". http://lists.osgeo.org/pipermail/grass-dev/2008-February/035629.html * Module should '''not''' write/change maps in other mapsets than current mapset. http://lists.osgeo.org/pipermail/grass-dev/2008-February/035637.html == GRASS GIS Addons == * Addons appear in the [http://grass.osgeo.org/grass70/manuals/addons/ Addons manual pages] when being registered in the parent Makefile * devs only: the addons are created via [https://svn.osgeo.org/grass/grass-addons/tools/addons/README.txt cronjobs] (user can install them via g.extension) == See also == * http://grass.osgeo.org/development/