blob: 9a6162d05ed6f90e17525687f03879eb7f6f125a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Pierre Allard,
* Regent L'Archeveque - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.core.environment.earth.provider;
import java.text.DecimalFormat;
import org.eclipse.apogy.core.environment.earth.HorizontalCoordinates;
import org.eclipse.emf.common.notify.AdapterFactory;
public class HorizontalCoordinatesCustomItemProvider extends HorizontalCoordinatesItemProvider {
// FIXME Should be centralized.
private final DecimalFormat decimalFormat = new DecimalFormat("0.0");
public static final String DEGREE_STRING = "\u00b0";
public HorizontalCoordinatesCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
@Override
public String getText(Object object) {
HorizontalCoordinates horizontalCoordinates = (HorizontalCoordinates) object;
String string = getString("_UI_HorizontalCoordinates_type");
string += " (" + this.decimalFormat.format(Math.toDegrees(horizontalCoordinates.getAzimuth())) + DEGREE_STRING
+ " az, ";
string += this.decimalFormat.format(Math.toDegrees(horizontalCoordinates.getAltitude())) + DEGREE_STRING
+ " el)";
return string;
}
}