001/*
002 * Copyright 2020 Global Biodiversity Information Facility (GBIF)
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.gbif.api.model.registry.eml.geospatial;
017
018import java.util.Locale;
019
020public class Point implements Geometry {
021
022  /**
023   * y.
024   */
025  private double latitude;
026
027  /**
028   * x.
029   */
030  private double longitude;
031
032  public double getLatitude() {
033    return latitude;
034  }
035
036  public void setLatitude(double latitude) {
037    this.latitude = latitude;
038  }
039
040  public double getLongitude() {
041    return longitude;
042  }
043
044  public void setLongitude(double longitude) {
045    this.longitude = longitude;
046  }
047
048  @Override
049  public String toWellKnownText() {
050    return String.format(Locale.ENGLISH, "POINT (%f %f)", longitude, latitude);
051  }
052
053}