01 /*
02 * Java GPX Library (jpx-3.1.0).
03 *
04 * Licensed under the Apache License, Version 2.0 (the "License");
05 * you may not use this file except in compliance with the License.
06 * You may obtain a copy of the License at
07 *
08 * http://www.apache.org/licenses/LICENSE-2.0
09 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 /**
18 * This package contains classes for formatting and parsing coordinates to and
19 * from a <a href="https://en.wikipedia.org/wiki/ISO_6709">ISO 6709</a> location
20 * string.
21 *
22 * @version 2.2
23 * @since 1.0
24 */
25 package io.jenetics.jpx.format;
|