Skip to content

Commit

Permalink
adapt to new api docs for geodata eai
Browse files Browse the repository at this point in the history
  • Loading branch information
boal committed Nov 8, 2024
1 parent a12b211 commit bd855c5
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 53 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,47 +105,47 @@ private void addDataToSheet(
cell.setCellStyle(style);

cell = row.get().createCell(1);
cell.setCellValue(entry.getMeanOfAggregatesForAllMqId().getMqId());
cell.setCellValue(entry.getMeanOverAllAggregatesOfAllMqId().getMqId());
cell.setCellStyle(style);

int cellIndex = 2;
if (fahrzeugOptions.isKraftfahrzeugverkehr()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(
StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getSummeKraftfahrzeugverkehr()), StringUtils.EMPTY));
StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getSummeKraftfahrzeugverkehr()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
if (fahrzeugOptions.isSchwerverkehr()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getSummeSchwerverkehr()));
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getSummeSchwerverkehr()), StringUtils.EMPTY));
cell.setCellValue(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getSummeSchwerverkehr()));
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getSummeSchwerverkehr()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
if (fahrzeugOptions.isGueterverkehr()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getSummeGueterverkehr()), StringUtils.EMPTY));
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getSummeGueterverkehr()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
if (fahrzeugOptions.isSchwerverkehrsanteilProzent()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(
StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getProzentSchwerverkehr()), StringUtils.EMPTY));
StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getProzentSchwerverkehr()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
if (fahrzeugOptions.isGueterverkehrsanteilProzent()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(
StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getProzentGueterverkehr()), StringUtils.EMPTY));
StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getProzentGueterverkehr()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
if (fahrzeugOptions.isRadverkehr()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getAnzahlRad()), StringUtils.EMPTY));
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getAnzahlRad()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
Expand All @@ -157,37 +157,37 @@ private void addDataToSheet(
}
if (fahrzeugOptions.isLastkraftwagen()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getAnzahlLkw()), StringUtils.EMPTY));
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getAnzahlLkw()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
if (fahrzeugOptions.isLieferwagen()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getAnzahlLfw()), StringUtils.EMPTY));
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getAnzahlLfw()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
if (fahrzeugOptions.isLastzuege()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getSummeLastzug()), StringUtils.EMPTY));
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getSummeLastzug()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
if (fahrzeugOptions.isBusse()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getAnzahlBus()), StringUtils.EMPTY));
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getAnzahlBus()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
if (fahrzeugOptions.isKraftraeder()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getAnzahlKrad()), StringUtils.EMPTY));
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getAnzahlKrad()), StringUtils.EMPTY));
cell.setCellStyle(style);
cellIndex++;
}
if (fahrzeugOptions.isPersonenkraftwagen()) {
cell = row.get().createCell(cellIndex);
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOfAggregatesForAllMqId().getSummeAllePkw()), StringUtils.EMPTY));
cell.setCellValue(StringUtils.defaultIfEmpty(String.valueOf(entry.getMeanOverAllAggregatesOfAllMqId().getSummeAllePkw()), StringUtils.EMPTY));
cell.setCellStyle(style);
}

Expand Down
78 changes: 39 additions & 39 deletions src/main/resources/api/geodateneai.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,22 +48,22 @@
"required": true
},
"responses": {
"200": {
"description": "Intervalle erfolgreich abgefragt.",
"500": {
"description": "Bei der Erstellung oder Durchführung des Requests ist ein Fehler aufgetreten.",
"content": {
"application/hal+json": {
"schema": {
"$ref": "#/components/schemas/IntervalResponseDto"
"$ref": "#/components/schemas/InformationResponseDto"
}
}
}
},
"500": {
"description": "Bei der Erstellung oder Durchführung des Requests ist ein Fehler aufgetreten.",
"200": {
"description": "Intervalle erfolgreich abgefragt.",
"content": {
"application/hal+json": {
"schema": {
"$ref": "#/components/schemas/InformationResponseDto"
"$ref": "#/components/schemas/IntervalResponseDto"
}
}
}
Expand Down Expand Up @@ -130,22 +130,22 @@
"required": true
},
"responses": {
"200": {
"description": "TagesTyp erfolgreich validiert",
"500": {
"description": "Bei der Erstellung oder Durchführung des Requests ist ein Fehler aufgetreten.",
"content": {
"application/hal+json": {
"schema": {
"$ref": "#/components/schemas/ChosenTagesTypValidDTO"
"$ref": "#/components/schemas/InformationResponseDto"
}
}
}
},
"500": {
"description": "Bei der Erstellung oder Durchführung des Requests ist ein Fehler aufgetreten.",
"200": {
"description": "TagesTyp erfolgreich validiert",
"content": {
"application/hal+json": {
"schema": {
"$ref": "#/components/schemas/InformationResponseDto"
"$ref": "#/components/schemas/ChosenTagesTypValidDTO"
}
}
}
Expand Down Expand Up @@ -205,22 +205,22 @@
}
],
"responses": {
"200": {
"description": "Nicht Plausible Tage erfolgreich abgefragt.",
"500": {
"description": "Bei der Erstellung oder Durchführung des Requests ist ein Fehler aufgetreten.",
"content": {
"application/hal+json": {
"schema": {
"$ref": "#/components/schemas/NichtPlausibleTageDto"
"$ref": "#/components/schemas/InformationResponseDto"
}
}
}
},
"500": {
"description": "Bei der Erstellung oder Durchführung des Requests ist ein Fehler aufgetreten.",
"200": {
"description": "Nicht Plausible Tage erfolgreich abgefragt.",
"content": {
"application/hal+json": {
"schema": {
"$ref": "#/components/schemas/InformationResponseDto"
"$ref": "#/components/schemas/NichtPlausibleTageDto"
}
}
}
Expand Down Expand Up @@ -362,25 +362,6 @@
"type": "integer",
"format": "int32"
},
"datumUhrzeitVon": {
"type": "string",
"format": "date-time"
},
"datumUhrzeitBis": {
"type": "string",
"format": "date-time"
},
"tagesTyp": {
"type": "string",
"enum": [
"DTV_W3",
"DTV_W5",
"SAMSTAG",
"SONNTAG_FEIERTAG",
"WERKTAG_FERIEN",
"DTV"
]
},
"anzahlPkw": {
"type": "number"
},
Expand Down Expand Up @@ -431,6 +412,25 @@
},
"prozentGueterverkehr": {
"type": "number"
},
"datumUhrzeitVon": {
"type": "string",
"format": "date-time"
},
"datumUhrzeitBis": {
"type": "string",
"format": "date-time"
},
"tagesTyp": {
"type": "string",
"enum": [
"DTV_W3",
"DTV_W5",
"SAMSTAG",
"SONNTAG_FEIERTAG",
"WERKTAG_FERIEN",
"DTV"
]
}
},
"description": "Für jeden Messtag je Interval der Durchschnitt über die selektierten Messquerschnitt-Ids."
Expand Down Expand Up @@ -582,12 +582,12 @@
"properties": {
"meanOfAggregatesForEachMqId": {
"type": "array",
"description": "Durchschnitt aller Tagesaggregate pro angefragten Messquerschnitt-Ids.",
"description": "Durchschnitt aller Tagesaggregate je angefragten Messquerschnitt-Ids.",
"items": {
"$ref": "#/components/schemas/TagesaggregatDto"
}
},
"meanOfAggregatesForAllMqId": {
"meanOverAllAggregatesOfAllMqId": {
"$ref": "#/components/schemas/TagesaggregatDto"
}
}
Expand Down

0 comments on commit bd855c5

Please sign in to comment.