Release 3.6.0
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@112165 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
1704a0fba1
commit
49b411d4b6
|
@ -74,7 +74,7 @@ public class OpExecution4GeometryCreatePoint extends OpExecutionBuilder {
|
|||
ColumnData latitudeColumn = geometryCreatePointSession.getLatitude();
|
||||
logger.debug("Latitude Column: " + latitudeColumn);
|
||||
if (latitudeColumn == null) {
|
||||
logger.error("Error Creating Geospatial Coordinates: Latitude Column is null");
|
||||
logger.error("Error creating Geometry: Latitude Column is null");
|
||||
throw new TDGWTServiceException("No latitude column set");
|
||||
}
|
||||
ColumnLocalId latitudeId = new ColumnLocalId(
|
||||
|
@ -85,7 +85,7 @@ public class OpExecution4GeometryCreatePoint extends OpExecutionBuilder {
|
|||
ColumnData longitudeColumn = geometryCreatePointSession.getLongitude();
|
||||
logger.debug("Longitude Column: " + longitudeColumn);
|
||||
if (longitudeColumn == null) {
|
||||
logger.error("Error Creating Geospatial Coordinates: Longitude Column is null");
|
||||
logger.error("Error creating Geometry: Longitude Column is null");
|
||||
throw new TDGWTServiceException("No longitude column set");
|
||||
}
|
||||
ColumnLocalId longitudeId = new ColumnLocalId(
|
||||
|
|
|
@ -51,6 +51,10 @@ public class ValueDataFormat implements Serializable {
|
|||
this.regexp = regexp;
|
||||
}
|
||||
|
||||
public String getLabel(){
|
||||
return id;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "TimeDataFormat [id=" + id + ", example=" + example
|
||||
|
|
Loading…
Reference in New Issue