blob: 37938d465861a79fd7306ab7597359a9f68d977a [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 - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
*******************************************************************************/
package org.eclipse.apogy.core.environment.earth.ui.provider;
import java.text.DecimalFormat;
import org.eclipse.apogy.core.environment.earth.ui.EarthSurfaceLocationWorldWindLayer;
import org.eclipse.emf.common.notify.AdapterFactory;
public class EarthSurfaceLocationWorldWindLayerCustomItemProvider
extends EarthSurfaceLocationWorldWindLayerItemProvider {
public EarthSurfaceLocationWorldWindLayerCustomItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
@Override
public String getText(Object object) {
EarthSurfaceLocationWorldWindLayer earthSurfaceLocationWorldWindLayer = (EarthSurfaceLocationWorldWindLayer) object;
String label = null;
if (earthSurfaceLocationWorldWindLayer.getName() != null
&& earthSurfaceLocationWorldWindLayer.getName().length() > 0) {
label = earthSurfaceLocationWorldWindLayer.getName();
} else {
label = getString("_UI_EarthSurfaceLocationWorldWindLayer_type");
}
String topSuffix = getAbstractWorldWindLayerText(earthSurfaceLocationWorldWindLayer);
if (topSuffix.length() > 0) {
label += "(" + topSuffix + ", ";
} else {
label += "( ";
}
if (earthSurfaceLocationWorldWindLayer.getEarthSurfaceLocation() != null) {
DecimalFormat format = new DecimalFormat("0.000");
label += "lat "
+ format.format(
Math.toDegrees(earthSurfaceLocationWorldWindLayer.getEarthSurfaceLocation().getLatitude()))
+ ", lon ";
label += format.format(
Math.toDegrees(earthSurfaceLocationWorldWindLayer.getEarthSurfaceLocation().getLongitude()));
}
label += ")";
return label;
}
}