Skip to content

Commit

Permalink
Remove trailing spaces at end of lines, for avoiding spurious changes…
Browse files Browse the repository at this point in the history
… in future commits.

Add a missing space before parenthesis.
  • Loading branch information
desruisseaux committed Sep 6, 2024
1 parent 0782e70 commit 75425b4
Show file tree
Hide file tree
Showing 42 changed files with 62 additions and 62 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def citation(self):
if value:
return Citation(value)
else:

@property
@abstractmethod
def abstract(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@
*
*/
public interface BaseUnit {

/**
* The alphanumeric identifier of the unit.
*/
String getId();

/**
* The full name of the uom.
*/
String getName();

/**
* The quantity type.
*/
String getQuantityType();

/**
* The system defining this unit f measure.
*/
String getUnitsSystem();

}
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ public interface CompositePhenomenon extends CompoundPhenomenon {
*/
@UML(identifier="base", obligation=OPTIONAL, specification=OGC_07022)
Phenomenon getBase();

}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* Example:
* an application may choose to include observations of "WaterTemperature"
* when the subject of interest is observations of "Temperature".
*
*
* @version <A HREF="http://www.opengeospatial.org/standards/om">Implementation specification 1.0</A>
* @author Open Geospatial Consortium
* @author Guilhem Legal (Geomatys)
Expand All @@ -67,5 +67,5 @@ public interface PhenomenonSeries extends CompoundPhenomenon {
*/
@UML(identifier="base", obligation=MANDATORY, specification=OGC_07022)
Phenomenon getBase();

}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

/**
* The description of Observation procedures is beyond the scope of this specification.
*
*
* NOTE: It is expected that standard process model descriptions will be published in a standard location
* (e.g. ISO 19135 register) enabling them to be used by-reference.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* ProcessSystem aggregates sub-processes, which may apply either in parallel (as a
* process package) or sequentially (in a processing chain) or a mixture.
*
*
* @version <A HREF="http://www.opengeospatial.org/standards/om">Implementation specification 1.0</A>
* @author Open Geospatial Consortium
* @author Guilhem Legal (Geomatys)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import static org.opengis.annotation.Obligation.*;

/**
* Specialized Observation, in which the result is a compact representation of a time-instant coverage
* Specialized Observation, in which the result is a compact representation of a time-instant coverage
* which samples a property of the feature of interest at different times.
*
* @version <A HREF="http://www.opengeospatial.org/standards/om">Implementation specification 1.0</A>
Expand All @@ -34,11 +34,11 @@
*/
@UML(identifier="TimeSeriesObservation", specification=OGC_07022)
public interface TimeSeriesObservation extends DiscreteCoverageObservation {

/**
* compact representation of a time-instant coverage which samples a property of the feature of interest at different times
*/
@UML(identifier="result", obligation=MANDATORY, specification=OGC_07022)
DiscreteTimeInstantCoverage getResult();

}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
@UML(identifier="CV_DiscreteTimeInstantCoverage", specification=OGC_07022)
public interface DiscreteTimeInstantCoverage extends DiscreteCoverage {

public TimeInstantValuePair element = null;

}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import static org.opengis.annotation.Obligation.*;

/**
* A locatedSpecimen is a specialization of specimen that carries it's location
* A locatedSpecimen is a specialization of specimen that carries it's location
* informations.
*
* @version <A HREF="http://www.opengeospatial.org/standards/om">Implementation specification 1.0</A>
Expand All @@ -38,7 +38,7 @@ public interface LocatedSpecimen extends Specimen {
/**
* Sampling location may be provided directly if not available through its association
* with either the sampledFeature or a relatedSamplingFeature.
*
*
* @return Geometry : the specimen location geometry.
*/
@UML(identifier="samplingLocation", obligation=MANDATORY, specification=OGC_07022)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ public interface SamplingCurve extends SpatiallyExtensiveSamplingFeature {
*/
@UML(identifier="shape", obligation=MANDATORY, specification=OGC_07022)
Curve getShape();

}
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public interface SamplingFeature extends AnyFeature{

/**
* Sampling features are frequently related to each other, as parts of complexes, networks, through sub-sampling, etc.
* This is supported by the relatedSamplingFeature association with a SamplingFeatureRelation association class, which carries a source, target and role.
* This is supported by the relatedSamplingFeature association with a SamplingFeatureRelation association class, which carries a source, target and role.
*/
@UML(identifier="relatedSamplingFeature", obligation=MANDATORY, specification=OGC_07022)
List<SamplingFeatureRelation> getRelatedSamplingFeature();
Expand Down Expand Up @@ -70,5 +70,5 @@ public interface SamplingFeature extends AnyFeature{
*/
@UML(identifier="srelatedObservation", obligation=MANDATORY, specification=OGC_07022)
List<Observation> getRelatedObservation();

}
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ public interface SamplingFeatureRelation {

@UML(identifier="target", obligation=MANDATORY, specification=OGC_07022)
SamplingFeature getTarget();

}
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ public interface SamplingSurface extends SpatiallyExtensiveSamplingFeature {
*/
@UML(identifier="shape", obligation=MANDATORY, specification=OGC_07022)
Surface getShape();

}
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
*/
@UML(identifier="SpatiallyExtensiveSamplingFeature", specification=OGC_07022)
public interface SpatiallyExtensiveSamplingFeature extends SamplingFeature {

}
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@

__package_name__ = "opengis"
__version__ = 4.0
__author__ = "Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
__author__ = "Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"
__license_type__ = "© 2013-2024 Open Geospatial Consortium, Inc.\
Licensed under the Apache License, Version 2.0."
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/geometry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
"""

__author__ = "OGC Topic 1 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/acquisition.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"


from abc import ABC, abstractmethod
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/citation.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/content.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/extent.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/identification.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/lineage.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/maintenance.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence, Set
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/naming.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/quality.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/representation.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/metadata/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 11 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/referencing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
"""

__author__ = "OGC Topic 2 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/referencing/crs.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"""

__author__ = "OGC Topic 2 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/referencing/cs.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 2 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import abstractmethod
from enum import Enum
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/referencing/datum.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 2 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import abstractmethod
from datetime import datetime
Expand Down
2 changes: 1 addition & 1 deletion geoapi/src/main/python/opengis/referencing/operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""

__author__ = "OGC Topic 2 (for abstract model and documentation), " +\
"Martin Desruisseaux(Geomatys), David Meaux (Geomatys)"
"Martin Desruisseaux (Geomatys), David Meaux (Geomatys)"

from abc import ABC, abstractmethod
from collections.abc import Sequence
Expand Down
2 changes: 1 addition & 1 deletion src/main/metanorma/sections/clause_1_scope.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[[scope]]
== Scope

GeoAPI contains a series of interfaces and classes in several packages which interpret
GeoAPI contains a series of interfaces and classes in several packages which interpret
the data model and UML types of the ISO and OGC standards documents into some programming languages
(currently {supported-languages}) .
The interfaces includes documentation which complement the injunctions of the OGC/ISO specifications by explaining
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ For the open case, GeoAPI defines the `Code­List` abstract class in Java.
[options="header"]
|===========================================================
|ISO 19103 type |Java type |Python type
|CodeList |`org.opengis.util.CodeList` |`Enum` ^(1)^
|CodeList |`org.opengis.util.CodeList` |`Enum` ^(1)^
|Enumeration |`java.lang.Enum` |`Enum`
|`Bit` |unimplemented |unimplemented
|`Digit` |unimplemented |unimplemented
|`Sign` |unimplemented |unimplemented
|`Bit` |unimplemented |unimplemented
|`Digit` |unimplemented |unimplemented
|`Sign` |unimplemented |unimplemented
|===========================================================

Notes:
Expand Down
Loading

0 comments on commit 75425b4

Please sign in to comment.