-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clarify meaning of multi-occurrence in Address.deliveryPoint #34
Comments
+1 I think it's always going to refer to a single address, as also in https://nzodn.nz/geonetwork/srv/eng/metadata.show?uuid=011b0eec-98ae-499a-9de6-70c9ef758170 Both examples above are used here at work. As well as 52N SOS, which has a method similar to what you suggest. But with a |
I found only the following in ISO 19115-1:2014:
with a maximum occurrence of N (thus allowing explicitly many instances, but without saying for which purpose). If the intent is a single delivery point which may be one many lines, then maybe the property should be only an |
So I think the I am neutral to Just looked up and noticed
I think so too. A few words may still appear in Romaji, like company names like FujiFilm, Jaxa, etc. But in the vast majority, I believe they will put everything with romaji, or everything with kanji/hiragana/etc. |
…entation / code formatting updates.
CI_Address.deliveryPoint
is a property of typeCharacterSequence
documented in ISO 19115 as: "the address line for the location (as described in ISO 11180, Annex A)". Since ISO 19115 allows many occurrences of that property, it has been interpreted in GeoAPI as if aCI_Address
can have many delivery points. But the examples in data.gov file suggests that the multi-occurrence is rather for describing a single delivery point on many lines. Example (simplified):If the later interpretation is correct (e.g. the multi-occurrence is for a single delivery points on many lines, not for multiple delivery points), then the following method signature:
should be changed as below. Note the singular (because only one delivery point) and the use of
List
(because the order of those lines matter):In addition the documentation should clarify that interpretation.
The text was updated successfully, but these errors were encountered: