<?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: Accessing rasters within Postgres Database in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/accessing-rasters-within-postgres-database/m-p/808098#M3043</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure which version of ArcGIS you are using, but the below details may help you:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.6/manage-data/gdbs-in-postgresql/dataset-internal-tables.htm#ESRI_SECTION1_89129FA3689449B8ADFAA3F31CEFD021" title="http://desktop.arcgis.com/en/arcmap/10.6/manage-data/gdbs-in-postgresql/dataset-internal-tables.htm#ESRI_SECTION1_89129FA3689449B8ADFAA3F31CEFD021"&gt;Dataset system tables—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;/P&gt;&lt;H2 style="color: #4d4d4d; background-color: #fefefe; font-weight: 500; font-size: 2rem; margin: 1.26316em 0px 0.63158em;"&gt;&lt;SPAN class=""&gt;Raster datasets and raster catalogs&lt;/SPAN&gt;&lt;/H2&gt;&lt;P style="color: #4d4d4d; background-color: #fefefe; font-size: 0.875rem; margin-top: 0em; margin-bottom: 1.71429em;"&gt;Raster data is spatial data represented in an array of equally sized cells arranged in rows and columns. Raster data is composed of one or more raster bands. When you create or import a raster dataset, a raster column is added to the base table when it is created in the database. Each cell of the raster column contains a reference to a raster stored in a separate raster table.&lt;/P&gt;&lt;P style="color: #4d4d4d; background-color: #fefefe; font-size: 0.875rem; margin-top: 0em; margin-bottom: 1.71429em;"&gt;Each raster dataset or raster catalog contains a base table that stores attributes, a raster column, and the footprint (the area) of the raster.&lt;/P&gt;&lt;P style="color: #4d4d4d; background-color: #fefefe; font-size: 0.875rem; margin-top: 0em; margin-bottom: 1.71429em;"&gt;&lt;STRONG&gt;Raster images and properties are stored in the following tables&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL class="" style="color: #4d4d4d; background-color: #fefefe; font-size: 0.875em; margin-bottom: 1.5em;"&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_AUX_&amp;lt;raster_column_ID&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_BLK_&amp;lt;raster_column_ID&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_BND_&amp;lt;raster_column_ID&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_RAS_&amp;lt;raster_column_ID&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_VAT_&amp;lt;raster_column_ID&amp;gt;&lt;/SPAN&gt;—Optional table to define attributes for raster cell values of a raster dataset.&lt;/LI&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_VAT_&amp;lt;raster_column_ID&amp;gt;_&amp;lt;Object_ID&amp;gt;&lt;/SPAN&gt;—Optional tables to define attributes for raster cell values of a raster catalog. Each raster catalog can have several of these tables.&lt;/LI&gt;&lt;/UL&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Aug 2019 07:02:20 GMT</pubDate>
    <dc:creator>Asrujit_SenGupta</dc:creator>
    <dc:date>2019-08-21T07:02:20Z</dc:date>
    <item>
      <title>Accessing rasters within Postgres Database</title>
      <link>https://community.esri.com/t5/geodatabase-questions/accessing-rasters-within-postgres-database/m-p/808097#M3042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We're working with a mix of different software to store and query our data on our PostgreSQL Server. We've found a way to deal with geometry data and convert the default st_geometry datatype into postGIS "geometry" and thus can query the data from inside R, for example, without external tools.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When storing our raster data on the server, this task becomes much more difficult.&amp;nbsp;Viewed in pg admin, my raster dataset consists of a table with a single row of the following columns: oid (integer), footprint (st_geometry), raster (integer).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="456879" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/456879_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where is the raster &lt;EM&gt;file&lt;/EM&gt; (BLOB?) stored? We've searched through our database, but couldn't find anything relevant. Maybe these dependents give a hint?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="456880" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/456880_pastedImage_2.png" /&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Aug 2019 07:24:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/accessing-rasters-within-postgres-database/m-p/808097#M3042</guid>
      <dc:creator>NilsRatnaweera1</dc:creator>
      <dc:date>2019-08-13T07:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: Accessing rasters within Postgres Database</title>
      <link>https://community.esri.com/t5/geodatabase-questions/accessing-rasters-within-postgres-database/m-p/808098#M3043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure which version of ArcGIS you are using, but the below details may help you:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.6/manage-data/gdbs-in-postgresql/dataset-internal-tables.htm#ESRI_SECTION1_89129FA3689449B8ADFAA3F31CEFD021" title="http://desktop.arcgis.com/en/arcmap/10.6/manage-data/gdbs-in-postgresql/dataset-internal-tables.htm#ESRI_SECTION1_89129FA3689449B8ADFAA3F31CEFD021"&gt;Dataset system tables—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;/P&gt;&lt;H2 style="color: #4d4d4d; background-color: #fefefe; font-weight: 500; font-size: 2rem; margin: 1.26316em 0px 0.63158em;"&gt;&lt;SPAN class=""&gt;Raster datasets and raster catalogs&lt;/SPAN&gt;&lt;/H2&gt;&lt;P style="color: #4d4d4d; background-color: #fefefe; font-size: 0.875rem; margin-top: 0em; margin-bottom: 1.71429em;"&gt;Raster data is spatial data represented in an array of equally sized cells arranged in rows and columns. Raster data is composed of one or more raster bands. When you create or import a raster dataset, a raster column is added to the base table when it is created in the database. Each cell of the raster column contains a reference to a raster stored in a separate raster table.&lt;/P&gt;&lt;P style="color: #4d4d4d; background-color: #fefefe; font-size: 0.875rem; margin-top: 0em; margin-bottom: 1.71429em;"&gt;Each raster dataset or raster catalog contains a base table that stores attributes, a raster column, and the footprint (the area) of the raster.&lt;/P&gt;&lt;P style="color: #4d4d4d; background-color: #fefefe; font-size: 0.875rem; margin-top: 0em; margin-bottom: 1.71429em;"&gt;&lt;STRONG&gt;Raster images and properties are stored in the following tables&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL class="" style="color: #4d4d4d; background-color: #fefefe; font-size: 0.875em; margin-bottom: 1.5em;"&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_AUX_&amp;lt;raster_column_ID&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_BLK_&amp;lt;raster_column_ID&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_BND_&amp;lt;raster_column_ID&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_RAS_&amp;lt;raster_column_ID&amp;gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_VAT_&amp;lt;raster_column_ID&amp;gt;&lt;/SPAN&gt;—Optional table to define attributes for raster cell values of a raster dataset.&lt;/LI&gt;&lt;LI style="font-size: 0.875rem; padding-left: 1em;"&gt;&lt;SPAN class=""&gt;SDE_VAT_&amp;lt;raster_column_ID&amp;gt;_&amp;lt;Object_ID&amp;gt;&lt;/SPAN&gt;—Optional tables to define attributes for raster cell values of a raster catalog. Each raster catalog can have several of these tables.&lt;/LI&gt;&lt;/UL&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2019 07:02:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/accessing-rasters-within-postgres-database/m-p/808098#M3043</guid>
      <dc:creator>Asrujit_SenGupta</dc:creator>
      <dc:date>2019-08-21T07:02:20Z</dc:date>
    </item>
  </channel>
</rss>

