In a computer, information is represented as bits (0's and 1's). We typically quantify data as bytes (8 bits): There are numerous ways to translate human readable data to binary, such as ASCII:
There are numerous ways to translate human readable data to binary, such as ASCII, where each character is represented as one byte. There are
28 = 256 unique combinations of 0's and 1's in a byte.
Modern computers use 64-bit "architecture". That is, the central processing unit (CPU) can handle 64 bits (8 bytes) of information at a time.
Within the context of a GIS, every piece of information describing a phenomenon is referred to as an Attribute. Broadly speaking each attribute can address one of three questions:
All data, spatial and non-spatial, can be either qualitative or quantitative.
Categorical: strictly descriptive and lack any meaningful numeric value.
We can:
We can:
Same operations as nominal data + more.
Sometimes we can calculate the median.
Exceptions that blur the lines.
Winner take all: alpine meadow
The Downside: variability within the area is lost.
Numeric; describe the quantities associated with a phenomenon.
Discrete and continuous data can be measured on an Interval or Ratio scale.
Fixed, absolute zero point.
Population is a good example of discrete ratio data.
Tree height is a good example of continuous ratio data.
Other examples of ratio data include:
Arbitrary zero point
Celsius (interval) vs. Kelvin (ratio).
Other examples include:
If we want to account for the influence of one variable when analyzing another. Referred to as Normalizing or Standardizing.
There are many circumstances where we might need to do this. ie. Housing affordability.
Another would be incident rates.
Operation | Nominal | Ordinal | Interval | Ratio |
Equality | x | x | x | x |
Counts/Mode | x | x | x | x |
Rank/Order | x | x | x | |
Median | ~ | x | x | |
Add/Subtract | x | x | ||
Mean | x | x | ||
Multiply/Divide | x |