Changes between Initial Version and Version 1 of BluePrint/GIS/Markers


Ignore:
Timestamp:
01/10/09 20:39:07 (16 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/GIS/Markers

    v1 v1  
     1Markers get used to display [wiki:BluePrintGISFeatureLayers Features].
     2
     3We have a folder full of samples (in {{{static/img/markers}}}) which then can be supplemented by user uploads.
     4
     5The Database table therefore needs to have all the samples imported into it. The 'uploads' feature of Web2Py only supports having all files in the single 'uploads' folder & needs them to be named in the format: table.image.name.ext.
     6
     7In order to allow good maintenance we want to keep the markers named nicely & in their hierarchy. We want a script to copy these files into the uploads folder with the correct names & insert the records into the database to point at them.[[BR]]
     8Currently this is done for just the single default marker: {{{marker.png}}} (code in {{{models/_gis.py}}}) [[BR]]
     9NB ID=1 is the default marker
     10{{{
     11dir=os.path.join(request.folder,'static','markers')
     12files=dir.list()
     13etc (recursively)
     14}}}
     15
     16We also want these enhancemnets to the marker/create routine:
     17 * height & width detected automatically
     18  * use [http://www.pythonware.com/products/pil PIL]?
     19  * jquery used to populate the fields or else populate via hidden fields
     20 * jquery to populate the name field from the filename
     21
     22When choosing Markers, it would be useful to be aware of the original folder hierarchy (look at Sahana2 for example UI for selecting markers)
     23
     24----
     25[[wiki:BluePrintGeographicInformationSystems GIS BluePrints]]