| 235 | } |
| 236 | |
| 237 | void StacReader::Private::handleItem(NL::json stacJson, std::string filename) |
| 238 | { |
| 239 | Item item(stacJson, filename, *m_connector, m_args->validateSchema); |
| 240 | |
| 241 | log()->get(LogLevel::Debug) << "Found STAC Item " << item.id() << "."; |
| 242 | if (item.init(*m_itemFilters, m_args->rawReaderArgs, m_args->schemaUrls)) |
| 243 | addItem(item); |
| 244 | } |
| 245 | |
| 246 | void StacReader::Private::handleNested(Catalog& c) |
| 247 | { |
no test coverage detected