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

org.opentripplanner.util.Constants Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.util;

/**
 * Constants
 * 
 * @author Frank Purcell
 * @version $Revision: 1.0 $
 * @since 1.0
 */
public interface Constants {

    // geo json stuff
    public static final String GEO_JSON_POINT = "{\"type\": \"Point\", \"coordinates\": [";
    public static final String GEO_JSON_TAIL = "]}";

    // PostGIS POINT(x, y) construct
    public static final String POINT_PREFIX = "POINT(";
    public static final int POINT_PREFIX_LEN = POINT_PREFIX.length();
    public static final String POINT_SUFFIX = ")";
    public static final int POINT_SUFFIX_LEN = POINT_SUFFIX.length();
    public static final String POINT_SEPARATOR = " ";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy