Git Product home page Git Product logo

Comments (1)

kfarr avatar kfarr commented on May 28, 2024

Thinking through some of the needs for StreetPlan and how they could do a step by step approach to integrate with 3DStreet:

  • a version 1 could be for a given streetplan street, output a text file (or allow a file to be downloaded) that has a name (however you store it in your database) of each of the street segments from left to right; also a number to represent the width of this segment type

QA:

  • Make a 1-item street

What is example of the simplest JSON that is compliant (can be parsed by) 3DStreet:

Example with 1 segment (modified from this streetmix API response):

{
  "name": "example",
  "data": {
    "street": {
      "segments": [
        {
          "type": "sidewalk-tree",
          "variantString": "",
          "width": 10,
        }
      ],
    }
  },
}

Example with 2 segments:

{
  "name": "example",
  "data": {
    "street": {
      "segments": [
        {
          "type": "sidewalk-tree",
          "variantString": "",
          "width": 10,
        },
        {
          "type": "drive-lane",
          "variantString": "",
          "width": 10,
        }
      ],
    }
  },
}

from 3dstreet.

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.