Saturday, February 7, 2015

Scale Bars

Scalebars
- Scalebars act like rulers. Their job is to help people measure distance on the map.

- Scale bars should not attract attention

- a skeletal style incorporating a very thin line (0.25 point) is usually better than the attention grabbing checkerboard styles.

- Avoid labeling all the divisions on the scalebar.

- Numbers placed on scalebars should be round and easy to work wtih.  Avoid using decimal values.

Saturday, March 24, 2012

Creating web mapping sites at ArcGIS.com



View Larger Map

Monday, February 20, 2012

ArcGIS and Python

This youTube Video summarizes the role that Python plays in ArcGIS. it is bit long, but the overview is good.

Another Tutorial on Python Classes.

This is a great YouTube tutorial that deals with several special class methods. First, there is brief mention of the constructor method, which was dealt with in the previous posts.

Second the string method is mentioned: (3.33). This method, if present, prints out what ever you tell it to print out about the self object. Whatever is printed out is contained in the string following the return statement
def __str__ (self):
return ('(0)is (1) years old.'.format(self.name, self.age)


The delete method __def__ (self) is next discussed. When called, this method deletes an object. To delete an object, call the function and supply the object name.

Class variables. These are stored in the class and not within a particular method. Any method can access a class variable.

Finally static methods are discussed. These are methods independent of the self object.

Great tutorial! take a look at it.




Sunday, February 19, 2012

Python Classes

Each Python Class has a constructor method which is responsible for creating an instance of the object when the class is called. The constructor method is written just after the class is declared. The constructor method is called using the __init___ command. Python actually calls the method and passes the user-supplied name to the method as a parameter. The YouTube video below gives a good introduction to Python Classes.




Friday, February 17, 2012

Experimenting with Google Earth.