변화탐지 point, cogUrl API 수정
This commit is contained in:
@@ -57,7 +57,19 @@ public class ChangeDetectionDto {
|
||||
|
||||
private String beforeCogUrl;
|
||||
private String afterCogUrl;
|
||||
private Geometry bbox;
|
||||
private JsonNode bbox;
|
||||
}
|
||||
|
||||
@Schema(name = "CogUrlDto", description = "COG Url 정보")
|
||||
@Getter
|
||||
@Setter
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public static class CogUrlData {
|
||||
|
||||
private String beforeCogUrl;
|
||||
private String afterCogUrl;
|
||||
private String bbox;
|
||||
}
|
||||
|
||||
@Schema(name = "AnalYearList", description = "년도(차수) 목록")
|
||||
@@ -140,6 +152,18 @@ public class ChangeDetectionDto {
|
||||
private Double cdProb; // 탐지정확도
|
||||
}
|
||||
|
||||
@Schema(name = "PointFeature", description = "Geometry 리턴 객체")
|
||||
@Getter
|
||||
@Setter
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public static class PointQueryData {
|
||||
|
||||
private String type;
|
||||
private String geometry; // point
|
||||
private PointProperties properties; // Point 정보
|
||||
}
|
||||
|
||||
@Schema(name = "PointFeature", description = "Geometry 리턴 객체")
|
||||
@Getter
|
||||
@Setter
|
||||
@@ -148,7 +172,7 @@ public class ChangeDetectionDto {
|
||||
public static class PointFeature {
|
||||
|
||||
private String type;
|
||||
private Geometry geometry; // point
|
||||
private JsonNode geometry; // point
|
||||
private PointProperties properties; // Point 정보
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user