The Center of a tree is the node (or two nodes) that minimizes the distance to the furthest node. If you root the tree at a center, the height is minimized. There can be one or two centers. If the diameter is even, there is one center (the middle node).
If the diameter is odd, there are two centers (the two middle nodes). Finding centers is useful for balancing trees and solving certain graph problems.