This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# quick overview of function definitions and function calls. | |
import some_module | |
# this below is a function definition, use it to generalize code to repeatedly do something. | |
# dnppy is full of function definitions | |
def my_function(argument1, argument2, default_argument3="some_default_string") | |
""" | |
this is a function DEFINITION , and this docstring should tell you | |
something about how it works. This docstring will be displayed if someone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ogr | |
__author__ = 'Jwely' | |
class Shape: | |
""" | |
Helps read data from shapefiles with ogr | |
""" |
NewerOlder