Code Monkey home page Code Monkey logo

Comments (1)

bdon avatar bdon commented on May 24, 2024 1

I actually made that in QGIS, but here's the C++ program to export a WKT TSV file of S2 cell geometries:

#include <iostream>
#include <vector>
#include "s2/s2region_coverer.h"
#include "s2/s2latlng.h"
#include "s2/s2latlng_rect.h"
#include "s2/s2polyline.h"
#include "s2/s2loop.h"

using namespace std;

void print(int i, S2Cell &cell) {
    S2LatLng latlng{cell.GetVertex(i)};
    cout << latlng.lng() << " " << latlng.lat();
}

int main(int argc, char* argv[]) {
    ... define points ...
    auto c = std::make_unique<S2Polyline>(points);
    S2RegionCoverer::Options options;
    options.set_max_cells(1024);
    options.set_max_level(16);
    S2RegionCoverer coverer{options};
    for (auto const &cell_id : coverer.GetCovering(*c)) {
	    S2Cell cell{cell_id};
      cout << cell.id().level() << "\t";
	    cout << "POLYGON ((";
	    for (int i = 0; i <= 3; i++) {
		    print(i, cell);
		    cout << ", ";
	    }
	    print(0,cell);
	    cout << "))" << endl;
    }
}

from osmexpress.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.