I am searching for an algorithm that will determine if a new rectangle is completely covered by a set of existing rectangles. Another way of putting the question, is does the new rectangle exist completely with the area covered by the existing rectangles?
There seem to be lots of algorithms to determine rectangle overlap and so on, but I can't really find anything that solves this exact problem.
The rectangles will be represented using x, y coordinates. This problem relates to geographical mapping.
Edit - from comment posted by the OP:
The rectangles are aligned on the X/Y axis