/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package eu.dnetlib.espas.spatial;

/**
 *
 * @author gathanas
 */
public enum QueryCRS {
   GEOSpherical("http://ontology.espas-fp7.eu/crs/GEOspherical"),GEOCartesian("http://ontology.espas-fp7.eu/crs/GEOcartesian"), GSE("http://ontology.espas-fp7.eu/crs/GSE");

   private String espasValue;
   
   QueryCRS(String espasV) {
      espasValue = espasV;
   }

   public String espasValue(){
      return espasValue;
   }
   
}
