001/* 002 * GeoAPI - Java interfaces for OGC/ISO standards 003 * Copyright © 2004-2023 Open Geospatial Consortium, Inc. 004 * http://www.geoapi.org 005 * 006 * Licensed under the Apache License, Version 2.0 (the "License"); 007 * you may not use this file except in compliance with the License. 008 * You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, 014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 015 * See the License for the specific language governing permissions and 016 * limitations under the License. 017 */ 018package org.opengis.metadata.quality; 019 020import org.opengis.annotation.UML; 021 022import static org.opengis.annotation.Specification.*; 023 024 025/** 026 * Correctness of non-quantitative attributes. 027 * 028 * <h2>Standardized values</h2> 029 * In order to achieve well defined and comparable quality information, it is recommended to 030 * report data quality using {@linkplain Measure quality measures} listed in ISO 19157 annex. 031 * The following table provides a summary; see ISO 19157 for more complete descriptions and examples. 032 * All identifiers should be in "ISO 19157" namespace. 033 * 034 * <table class="ogc"> 035 * <caption>Standardized values derived from ISO 19157</caption> 036 * <tr> 037 * <th>{@linkplain MeasureReference#getMeasureIdentification() Identifier}</th> 038 * <th>{@linkplain MeasureReference#getNamesOfMeasure() Name of measure}</th> 039 * <th>{@linkplain Measure#getBasicMeasure() Basic measure}</th> 040 * <th>{@linkplain Measure#getValueType() Value type}</th> 041 * <th>Remarks</th> 042 * </tr><tr> 043 * <td>65</td> 044 * <td>Number of incorrect attribute values</td> 045 * <td>error count</td> 046 * <td>Integer</td> 047 * <td></td> 048 * </tr><tr> 049 * <td>66</td> 050 * <td>rate of correct attribute values</td> 051 * <td>correct items rate</td> 052 * <td>Real</td> 053 * <td></td> 054 * </tr><tr> 055 * <td>67</td> 056 * <td>rate of incorrect attribute values</td> 057 * <td>error rate</td> 058 * <td>Real</td> 059 * <td></td> 060 * </tr> 061 * </table> 062 * 063 * <p>{@linkplain Measure#getDefinition() Definitions}:</p> 064 * <ol start="65"> 065 * <li>Total number of erroneous attribute values within the relevant part of the data set.</li> 066 * <li>Number of correct attribute values in relation to the total number of attribute values.</li> 067 * <li>Number of attribute values where incorrect values are assigned in relation to the total number of attribute values.</li> 068 * </ol> 069 * 070 * @author Alexis Gaillard (Geomatys) 071 * @author Martin Desruisseaux (Geomatys) 072 * @version 3.1 073 * 074 * @see QuantitativeAttributeAccuracy 075 * 076 * @since 3.1 077 */ 078@UML(identifier="DQ_NonQuantitativeAttributeCorrectness", specification=ISO_19157) 079public interface NonQuantitativeAttributeCorrectness extends ThematicAccuracy { 080}