GeoEco.DataProducts.NASA.PODAAC.GHRSSTLevel4.HasLazyPropertyValue
- GHRSSTLevel4.HasLazyPropertyValue(name, allowPhysicalValue=True)
Returns True if the specified lazy property has a value.
This method is equivalent to:
obj.GetLazyPropertyValue(name, allowPhysicalValue) is not None
- Parameters:
name (
str) – Name of the lazy property to check. Minimum length꞉ 1. Must match regular expression꞉[a-zA-Z][a-zA-Z0-9_]+.allowPhysicalValue (
bool, optional) – If True and the value of the lazy property is not currently known but might be available from the physical source of the data, the physical source will be checked for it, a potentially expensive and slow operation. If False and the value of the lazy property is not currently known, the physical source will not be checked and False will be returned.
- Returns:
True if a value is known for the lazy property. False if there is no value for it, or there might be a value available from the physical source of the data but allowPhysicalValue was False so it could not be checked.
- Return type: