# - - - - - M a n i f e s t c o n s t a n t s
The value of the Circle.water field when
no ocean is involved.
WATER_BLANK = ' '
Value of Circle.water for purely pelagic
transects.
WATER_PELAGIC = 'p'
Value of Circle.water when some open
ocean is included.
WATER_OCEAN = 'o'
Value of Circle.water when some
salt-water estuary is included but no open ocean.
WATER_ESTUARY = 'e'
The value of Circle.odd when the circle
has a normal or unknown shape and size.
ODD_BLANK = ' '
Value of Circle.odd for non-pelagic
circles not having a standard size and shape, where
this is known.
ODD_NONSTANDARD = 'x'
The value of the Census.age field when
the age class is unknown.
AGE_UNK = ' '
SQLAlchemy uses a URL to connect to the database engine.
URL_FORMAT = "%s://%s:%s@%s/%s" # ^ ^ ^ ^ ^ # | | | | +-- Database name # | | | +-- Host name # | | +-- Password # | +-- User name # +-- Protocol #
Unicode for the prime (′) symbol, used for minutes in latitudes and longitudes.
PRIME = u'\u2032'
This constant defines how close two circles have to be
to each other, in minutes of latitude or longitude, before
they are in danger of overlapping. This constant is used
in Section 6.30, “CBCData.overlappers(): Find
overlapping circles”.
OVERLAP_MINUTES = 14