| 56 | constexpr double modelMaxY = -25; |
| 57 | |
| 58 | static json getMinValidContent() { |
| 59 | json j; |
| 60 | j["file_type"] = "GeoTIFF"; |
| 61 | j["format_version"] = "1.0"; |
| 62 | j["source_crs"] = "EPSG:4959"; |
| 63 | j["target_crs"] = "EPSG:7907"; |
| 64 | j["definition_crs"] = "EPSG:4959"; |
| 65 | j["extent"]["type"] = "bbox"; |
| 66 | j["extent"]["parameters"] = { |
| 67 | {"bbox", {modelMinX, modelMinY, modelMaxX, modelMaxY}}}; |
| 68 | j["time_extent"]["first"] = "1900-01-01T00:00:00Z"; |
| 69 | j["time_extent"]["last"] = "2050-01-01T00:00:00Z"; |
| 70 | j["components"] = json::array(); |
| 71 | |
| 72 | return j; |
| 73 | } |
| 74 | |
| 75 | // --------------------------------------------------------------------------- |
| 76 |
no outgoing calls
no test coverage detected