All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cobber.fta.plugins.LongitudeDMS Maven / Gradle / Ivy

Go to download

Analyze Text data to determine simple type and Semantic type information as well as other key metrics associated with a text stream.

There is a newer version: 15.7.14
Show newest version
/*
 * Copyright 2017-2024 Tim Segall
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.cobber.fta.plugins;

import com.cobber.fta.PluginDefinition;
import com.cobber.fta.core.FTAType;

/**
 * Plugin to detect a Longitude as Degrees, minutes, and seconds.
 */
public class LongitudeDMS extends CoordinateDMS {
	/** The Regular Expression for this Semantic type. */
	private static final String REGEXP = "(\\d{5,7}|0?\\d{1,2} \\d{1,2} \\d{1,2}) ?[EeWw]";
	private static final char[] DIRECTION = { 'E', 'W', 'e', 'w' };
	private static final int MAX_DEGREES = 180;

	/**
	 * Construct a Longitude plugin based on the Plugin Definition.
	 * @param plugin The definition of this plugin.
	 */
	public LongitudeDMS(final PluginDefinition plugin) {
		super(plugin);
	}

	@Override
	protected
	char[] getDirectionChars() {
		return DIRECTION;
	}

	@Override
	protected
	int getMaxDegrees() {
		return MAX_DEGREES;
	}

	@Override
	public FTAType getBaseType() {
		return FTAType.STRING;
	}

	@Override
	public String getRegExp() {
		return REGEXP;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy