public boolean isMine(FeatureType wantFeatureType, NetcdfDataset ds) {
if ((wantFeatureType != FeatureType.ANY_POINT) && (wantFeatureType != FeatureType.STATION) && (wantFeatureType != FeatureType.POINT))
return false;
FeatureType ft = FeatureDatasetFactoryManager.findFeatureType( ds);
if ((ft == null) || ((ft != FeatureType.STATION) && (ft != FeatureType.POINT)))
return false;
String conv = ds.findAttValueIgnoreCase(null, "Conventions", null);
if (conv == null) return false;