변화탐지 point, cogUrl API 수정

This commit is contained in:
2025-12-10 17:09:43 +09:00
parent f4f490d9b7
commit 51cffccf4c
2 changed files with 82 additions and 24 deletions

View File

@@ -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 정보
}