/* * Copyright 2018-2019 Uber Technologies, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** @file * @brief stdin/stdout filter that converts from H3 indexes to local IJ * coordinates. This is experimental. * * See `h3ToLocalIj --help` for usage. * * The program reads H3 indexes from stdin and outputs the corresponding * IJ coordinates to stdout, until EOF is encountered. `NA` is printed if the * IJ coordinates could not be obtained. * * `origin` indicates the origin (or anchoring) index for the IJ coordinate * space. * * This program has the same limitations as the `experimentalH3ToLocalIj` * function. */ #include #include #include #include "args.h" #include "h3api.h" #include "utility.h" void doCell(H3Index h, H3Index origin) { CoordIJ ij; if (H3_EXPORT(experimentalH3ToLocalIj)(origin, h, &ij)) { printf("NA\n"); } else { printf("%d %d\n", ij.i, ij.j); } } int main(int argc, char* argv[]) { H3Index origin = 0; Arg helpArg = ARG_HELP; Arg originArg = { .names = {"-o", "--origin"}, .scanFormat = "%" PRIx64, .valueName = "origin", .value = &origin, .required = true, .helpText = "Origin (anchoring index) for the local coordinate system."}; DEFINE_INDEX_ARG(index, indexArg); Arg* args[] = {&helpArg, &originArg, &indexArg}; const int numArgs = 3; const char* helpText = "Converts H3 indexes to local IJ coordinates"; if (parseArgs(argc, argv, numArgs, args, &helpArg, helpText)) { return helpArg.found ? 0 : 1; } if (!H3_EXPORT(h3IsValid)(origin)) { printHelp(stderr, argv[0], helpText, numArgs, args, "Origin is invalid.", NULL); return 1; } if (indexArg.found) { doCell(index, origin); } else { // process the indexes on stdin char buff[BUFF_SIZE]; while (1) { // get an index from stdin if (!fgets(buff, BUFF_SIZE, stdin)) { if (feof(stdin)) break; else error("reading H3 index from stdin"); } H3Index h3 = H3_EXPORT(stringToH3)(buff); doCell(h3, origin); } } }