<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Question about generating buildings in ArcGIS Urban API Questions</title>
    <link>https://community.esri.com/t5/arcgis-urban-api-questions/question-about-generating-buildings/m-p/1326242#M25</link>
    <description>&lt;P&gt;Looking forward to more details or other questions so that I can hopefully help you to reach your goals with the Urban API. Best regards.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Sep 2023 06:56:40 GMT</pubDate>
    <dc:creator>AgnieszkaRozniak</dc:creator>
    <dc:date>2023-09-07T06:56:40Z</dc:date>
    <item>
      <title>Question about generating buildings</title>
      <link>https://community.esri.com/t5/arcgis-urban-api-questions/question-about-generating-buildings/m-p/1324887#M22</link>
      <description>&lt;P&gt;I'm working with a client using the Urban API to generate buildings. While they are able to use createLOD1Buildings mutation, they wonder if there's a way to do this more like the UI.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the inquiry -&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;Using Urban API, it's possible to create a plan, a branch, and a parcel inside that branch and then attach to that branch a&amp;nbsp;&lt;I&gt;BuildingTypeID&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/I&gt;by updating it.&lt;BR /&gt;&lt;BR /&gt;This looks like this :&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;`mutation {&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; updateParcels(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; urbanDatabaseId: "db1741f6d0b249a186d3f30d4b7cd363"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; parcels: {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; attributes: {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; GlobalID: "6c7b58d5-7ba1-4c87-894c-7cf67f7fc7ae"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BuildingTypeID: "198e597b-5d16-4cad-ae2d-f74092008d86"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DevelopmentType: BuildingType&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Develop: true&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; ) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; attributes {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; GlobalID&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;}`&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;I still pass the property&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;I&gt;Develop&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/I&gt;and&amp;nbsp;&lt;I&gt;DevelopmentType&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/I&gt;as an attribute, I also try to include&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;I&gt;Demolish&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/I&gt;in the attributes.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;The idea behind this&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;I&gt;updateParcels&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/I&gt;mutation would be to reproduce a functionality from Urban web application: when we select a branch, and then a parcel, under the tab "Develop" there is the possibility to attach a building type, and then, by clicking "Apply building type" various spaces are going to be generated.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Would it be possible to know if this&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;"Apply building type" functionalities is something specific the the web application, or is it also possible to use it with Urban API?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Thanks!&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 01 Sep 2023 18:36:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-urban-api-questions/question-about-generating-buildings/m-p/1324887#M22</guid>
      <dc:creator>RobStauder</dc:creator>
      <dc:date>2023-09-01T18:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Question about generating buildings</title>
      <link>https://community.esri.com/t5/arcgis-urban-api-questions/question-about-generating-buildings/m-p/1325330#M23</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Rob and thank you so much for your question.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;A short answer would be: unfortunately, it is not possible to automatically generate a plausible building (spaces) in a plan scenario using the Urban API. Currently, it is indeed a functionality specific to the web application.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Could you describe the customer workflow in more detail? How and why do they use the Urban API to create plans and what is their ultimate goal?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Understanding the use cases allows me to provide more information or solutions as well as help us further develop the Urban API in the future.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Have a great day!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 09:27:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-urban-api-questions/question-about-generating-buildings/m-p/1325330#M23</guid>
      <dc:creator>AgnieszkaRozniak</dc:creator>
      <dc:date>2023-09-05T09:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Question about generating buildings</title>
      <link>https://community.esri.com/t5/arcgis-urban-api-questions/question-about-generating-buildings/m-p/1325503#M24</link>
      <description>&lt;P&gt;Thanks. We'll follow up through product management. Cheers!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 17:18:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-urban-api-questions/question-about-generating-buildings/m-p/1325503#M24</guid>
      <dc:creator>RobStauder</dc:creator>
      <dc:date>2023-09-05T17:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Question about generating buildings</title>
      <link>https://community.esri.com/t5/arcgis-urban-api-questions/question-about-generating-buildings/m-p/1326242#M25</link>
      <description>&lt;P&gt;Looking forward to more details or other questions so that I can hopefully help you to reach your goals with the Urban API. Best regards.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 06:56:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-urban-api-questions/question-about-generating-buildings/m-p/1326242#M25</guid>
      <dc:creator>AgnieszkaRozniak</dc:creator>
      <dc:date>2023-09-07T06:56:40Z</dc:date>
    </item>
  </channel>
</rss>

