func (i IsLongitudeChecker) IsFormat(data string) bool {
	return govalidator.IsLongitude(data)
}
func (s *service) IsLongitude(str string) bool               { return gov.IsLongitude(str) }