Package madrona :: Package xyquery :: Package management :: Package commands :: Module loadraster :: Class Command
[hide private]

Class Command

source code

                             object --+    
                                      |    
django.core.management.base.BaseCommand --+
                                          |
                                         Command

Instance Methods [hide private]
 
parse_layer(self, rast, layername, srs) source code
 
handle(self, *rast, **options)
The actual logic of the command.
source code

Inherited from django.core.management.base.BaseCommand: __init__, create_parser, execute, get_version, print_help, run_from_argv, usage, validate

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  option_list = BaseCommand.option_list+(make_option('-n', '--na...
  help = 'Load a shapefile into the xyquery app.'
  args = '[shapefile ...]'

Inherited from django.core.management.base.BaseCommand: can_import_settings, output_transaction, requires_model_validation

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

handle(self, *rast, **options)

source code 

The actual logic of the command. Subclasses must implement this method.

Overrides: django.core.management.base.BaseCommand.handle
(inherited documentation)

Class Variable Details [hide private]

option_list

Value:
BaseCommand.option_list+(make_option('-n', '--name', dest= 'name', hel\
p= 'Raster name.'), make_option('-s', '--srs', dest= 'srs', help= 'Spa\
tial reference system of input raster'),)