Validates longitude value Range: -180 to 180 degrees
static bool isValidLongitude(double lon) => lon >= -180 && lon <= 180;