Merge pull request '변화탐지 polygon 정확도 컬럼 추가' (#34) from feat/demo-20251205 into develop
Reviewed-on: https://kamco.gitea.gs.dabeeo.com/dabeeo/kamco-dabeeo-backoffice/pulls/34
This commit is contained in:
@@ -137,6 +137,7 @@ public class ChangeDetectionDto {
|
|||||||
private Integer afterYear; // 비교년도
|
private Integer afterYear; // 비교년도
|
||||||
private Double afterConfidence; // 비교 신뢰도(확률)
|
private Double afterConfidence; // 비교 신뢰도(확률)
|
||||||
private String afterClass;
|
private String afterClass;
|
||||||
|
private Double cdProb; // 탐지정확도
|
||||||
}
|
}
|
||||||
|
|
||||||
@Schema(name = "PointFeature", description = "Geometry 리턴 객체")
|
@Schema(name = "PointFeature", description = "Geometry 리턴 객체")
|
||||||
@@ -177,5 +178,6 @@ public class ChangeDetectionDto {
|
|||||||
private Integer afterYear; // 비교년도
|
private Integer afterYear; // 비교년도
|
||||||
private Double afterConfidence; // 비교 신뢰도(확률)
|
private Double afterConfidence; // 비교 신뢰도(확률)
|
||||||
private String afterClass; // 비교 분류
|
private String afterClass; // 비교 분류
|
||||||
|
private Double cdProb; // 탐지 정확도
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -126,7 +126,8 @@ public class ChangeDetectionRepositoryImpl extends QuerydslRepositorySupport
|
|||||||
mapSheetAnalDataGeomEntity.classBeforeCd.toUpperCase(),
|
mapSheetAnalDataGeomEntity.classBeforeCd.toUpperCase(),
|
||||||
mapSheetAnalDataGeomEntity.targetYyyy,
|
mapSheetAnalDataGeomEntity.targetYyyy,
|
||||||
mapSheetAnalDataGeomEntity.classAfterProb,
|
mapSheetAnalDataGeomEntity.classAfterProb,
|
||||||
mapSheetAnalDataGeomEntity.classAfterCd.toUpperCase()))
|
mapSheetAnalDataGeomEntity.classAfterCd.toUpperCase(),
|
||||||
|
mapSheetAnalDataGeomEntity.cdProb))
|
||||||
.from(mapSheetAnalDataGeomEntity)
|
.from(mapSheetAnalDataGeomEntity)
|
||||||
.innerJoin(mapSheetAnalDataEntity)
|
.innerJoin(mapSheetAnalDataEntity)
|
||||||
.on(mapSheetAnalDataGeomEntity.dataUid.eq(mapSheetAnalDataEntity.id))
|
.on(mapSheetAnalDataGeomEntity.dataUid.eq(mapSheetAnalDataEntity.id))
|
||||||
@@ -159,7 +160,8 @@ public class ChangeDetectionRepositoryImpl extends QuerydslRepositorySupport
|
|||||||
data.getBeforeClass(),
|
data.getBeforeClass(),
|
||||||
data.getAfterYear(),
|
data.getAfterYear(),
|
||||||
data.getAfterConfidence(),
|
data.getAfterConfidence(),
|
||||||
data.getAfterClass());
|
data.getAfterClass(),
|
||||||
|
data.getCdProb());
|
||||||
|
|
||||||
return new ChangeDetectionDto.PolygonFeature(
|
return new ChangeDetectionDto.PolygonFeature(
|
||||||
data.getType(), jsonNode, properties);
|
data.getType(), jsonNode, properties);
|
||||||
|
|||||||
Reference in New Issue
Block a user