<?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: Projecting multiple images from one coordinate system to another, in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166792#M9316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: JSkinn3&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Jamal,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't believe there is a way to auto populate this parameter.&amp;nbsp; You can easily accomplish this in python, though.&amp;nbsp; Here is an example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import arcpy from arcpy import env env.workspace = r"D:\Practical1_AddingData\Data"&amp;nbsp; for raster in arcpy.ListRasters("*.jpg"): &amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.ProjectRaster_management(raster, raster + "_project.jpg", "GEOGCS['GCS_Palestine_1923',DATUM['D_Palestine_1923',SPHEROID['Clarke_1880_Benoit',6378300.789,293.4663155389802]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]","NEAREST","0.0000025","Palestine_1923_To_Israel_1","#","GEOGCS['GCS_Israel',DATUM['D_Israel',SPHEROID['GRS_1980',6378137.0,298.257222101]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]")&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The above code will iterate through the 'D:\Practical1_AddingData\Data' directory and reproject each JPG to a new JPG with the same name, just with "_project" added to it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Sep 2013 18:44:55 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2013-09-26T18:44:55Z</dc:date>
    <item>
      <title>Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166791#M9315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;&lt;SPAN&gt;Original User: &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:Jamal432@gmail.com"&gt;Jamal432@gmail.com&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Projecting multiple images from one coordinate system to another,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wanted to project multiple Jpeg images form Israel to Palestine coordinate system using the batch of the ???project raster??? tool but couldn???t figure out how the input raster are populated automatically in the ???output raster dataset???&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]27794[/ATTACH], [ATTACH=CONFIG]27795[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way to populate the images automatically in the ???output raster dataset????&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jamal&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 17:42:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166791#M9315</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-09-26T17:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166792#M9316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: JSkinn3&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Jamal,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't believe there is a way to auto populate this parameter.&amp;nbsp; You can easily accomplish this in python, though.&amp;nbsp; Here is an example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import arcpy from arcpy import env env.workspace = r"D:\Practical1_AddingData\Data"&amp;nbsp; for raster in arcpy.ListRasters("*.jpg"): &amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.ProjectRaster_management(raster, raster + "_project.jpg", "GEOGCS['GCS_Palestine_1923',DATUM['D_Palestine_1923',SPHEROID['Clarke_1880_Benoit',6378300.789,293.4663155389802]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]","NEAREST","0.0000025","Palestine_1923_To_Israel_1","#","GEOGCS['GCS_Israel',DATUM['D_Israel',SPHEROID['GRS_1980',6378137.0,298.257222101]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]")&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The above code will iterate through the 'D:\Practical1_AddingData\Data' directory and reproject each JPG to a new JPG with the same name, just with "_project" added to it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 18:44:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166792#M9316</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-09-26T18:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166793#M9317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Jamal,&lt;BR /&gt;&lt;BR /&gt;I don't believe there is a way to auto populate this parameter.&amp;nbsp; You can easily accomplish this in python, though.&amp;nbsp; Here is an example:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy import env
env.workspace = r"D:\Practical1_AddingData\Data"

for raster in arcpy.ListRasters("*.jpg"):
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.ProjectRaster_management(raster, raster + "_project.jpg", "GEOGCS['GCS_Palestine_1923',DATUM['D_Palestine_1923',SPHEROID['Clarke_1880_Benoit',6378300.789,293.4663155389802]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]","NEAREST","0.0000025","Palestine_1923_To_Israel_1","#","GEOGCS['GCS_Israel',DATUM['D_Israel',SPHEROID['GRS_1980',6378137.0,298.257222101]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;The above code will iterate through the 'D:\Practical1_AddingData\Data' directory and reproject each JPG to a new JPG with the same name, just with "_project" added to it.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Many thanks Jake for the help,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry but I couldn�??t know how to integrate the code you have provided with the �??project raster�?� tool. Could you please elaborate a bit more.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]27804[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;By the way, I like the behavior of the �??raster to other format�?� tool where the output is populated automatically in the specified folder. Why the design of the �??project raster�?� is not developed to be the same as �??raster to other format�?�?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]27805[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jamal&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:41:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166793#M9317</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2021-12-11T08:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166794#M9318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: JSkinn3&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Open your &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//002100000017000000"&gt;python window&lt;/A&gt;&lt;SPAN&gt; in ArcMap and you can copy/paste the code in there.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The code will iterate through your 'D:\Practical1_Adding\Data directory and reproject each JPG.&amp;nbsp; It will write the new projected raster to the same directory with the same name plus "_project" added to it. For example, the image 'yosh_09-06-12_77.jpg' will be reprojected and named 'yosh_09-06-12_77_project.jpg'.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Sep 2013 10:13:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166794#M9318</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2013-09-27T10:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166795#M9319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Open your &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//002100000017000000"&gt;python window&lt;/A&gt; in ArcMap and you can copy/paste the code in there.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;The code will iterate through your 'D:\Practical1_Adding\Data directory and reproject each JPG.&amp;nbsp; It will write the new projected raster to the same directory with the same name plus "_project" added to it. For example, the image 'yosh_09-06-12_77.jpg' will be reprojected and named 'yosh_09-06-12_77_project.jpg'.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you Jake very much for the prompt help. It works fantastically.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;While the code you have already sent is great in its current form, I still couldn�??t figure out why the behavior of the �??project raster�?� can�??t be developed to be the same as �??raster to other format�?� such that multiple projected raster can be populated automatically in the specified folder.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]27818[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Meanwhile, how the coded you have already sent can be further developed to allow the user to specify the input and output of raster (on the hard drive)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it also possible to be developed in form of script tool?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]27819[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Sep 2013 14:03:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166795#M9319</guid>
      <dc:creator>JamalNUMAN</dc:creator>
      <dc:date>2013-09-27T14:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166796#M9320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;&lt;SPAN&gt;Original User: &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:prabinrokaya@gmail.com"&gt;prabinrokaya@gmail.com&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can anyone tell me how can I project thousands of bil images into WGS_1984_UTM_Zone_37N?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jan 2014 08:26:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166796#M9320</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2014-01-15T08:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166797#M9321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are all of your bil files correctly georeferenced and on the WGS84 datum?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If so, follow the code template given by Jake above.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The WKID for WGS_1984_UTM_Zone_37N is 32637, so, rather than listing the entire text for the projection, I would use the WKID to create a spatial reference object for use in the Project function.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thus :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
import arcpy
from arcpy import env
env.workspace = r"Your path to the data here"

srOut = arcpy.SpatialReference(32637)


for raster in arcpy.ListRasters("*.bil"):
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.ProjectRaster_management(raster, raster + "_project.bil", srOut)
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;See the examples here :&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/#/Project_Raster/00170000007q000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.2/#/Project_Raster/00170000007q000000/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers and good luck,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Neil&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:41:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166797#M9321</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2021-12-11T08:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166798#M9322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;&lt;SPAN&gt;Original User: &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:prabinrokaya@gmail.com" rel="nofollow noopener noreferrer" target="_blank"&gt;prabinrokaya@gmail.com&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you Neil for the assistance. It was really kind of you. But yes, the bil files are not correctly geo-referenced. I also tried to do it via model builder but because file are not properly geo-referenced, it was difficult. Actually I have precipitation images which I want to first geo-referenced (usually I do it via arccatalog, going to spatial reference, edit and selecting GCS WGS 1984) and then through data management tool, project raster, I project them into WGS_1984_UTM_Zone_37N. Then in ArcGIS, I use extract by mask tool to get precipitation map for only my watershed. And calculate value using raster calculator. But the problem I have is, I have thousands of images and I can not do it manually. I wanted to do it via model builder or python and I am looking for assistance as all my attempts to figure it out have failed. It would be really really grateful if you could help me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your time and consideration.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Prabin Rokaya&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MSC, UNESCO-IHE Institute for Water Education&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Are all of your bil files correctly georeferenced and on the WGS84 datum?&lt;BR /&gt;If so, follow the code template given by Jake above.&lt;BR /&gt;&lt;BR /&gt;The WKID for WGS_1984_UTM_Zone_37N is 32637, so, rather than listing the entire text for the projection, I would use the WKID to create a spatial reference object for use in the Project function.&lt;BR /&gt;Thus :&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
import arcpy
from arcpy import env
env.workspace = r"Your path to the data here"

srOut = arcpy.SpatialReference(32637)


for raster in arcpy.ListRasters("*.bil"):
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.ProjectRaster_management(raster, raster + "_project.bil", srOut)
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;See the examples here :&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/#/Project_Raster/00170000007q000000/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://resources.arcgis.com/en/help/main/10.2/#/Project_Raster/00170000007q000000/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers and good luck,&lt;BR /&gt;Neil&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:42:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166798#M9322</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T08:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166799#M9323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Prabin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;errr...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If the original bil images are not georeferenced then no amount of assigning a coordinate system / projecting and what not is going to help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;They are simply not georeferenced. You will have to go through a georeferencing step which involves picking control points from the image and assigning to these points their correct coordinates.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But that is rather odd, where did this raster data come from?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Neil&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 12:39:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166799#M9323</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2014-01-17T12:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166800#M9324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;&lt;SPAN&gt;Original User: &lt;/SPAN&gt;&lt;A class="jive-link-email-small" href="mailto:Jamal432@gmail.com"&gt;Jamal432@gmail.com&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thank you Neil for the assistance. It was really kind of you. But yes, the bil files are not correctly geo-referenced. I also tried to do it via model builder but because file are not properly geo-referenced, it was difficult. Actually I have precipitation images which I want to first geo-referenced (usually I do it via arccatalog, going to spatial reference, edit and selecting GCS WGS 1984) and then through data management tool, project raster, I project them into WGS_1984_UTM_Zone_37N. Then in ArcGIS, I use extract by mask tool to get precipitation map for only my watershed. And calculate value using raster calculator. But the problem I have is, I have thousands of images and I can not do it manually. I wanted to do it via model builder or python and I am looking for assistance as all my attempts to figure it out have failed. It would be really really grateful if you could help me.&lt;BR /&gt;&lt;BR /&gt;Thank you for your time and consideration.&lt;BR /&gt;Prabin Rokaya&lt;BR /&gt;MSC, UNESCO-IHE Institute for Water Education&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Neil,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I�??m not sure if this code can be developed in form of geoprocessing tool. This would be much more easier for the end users. This command is a need for everybody&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, I would like to point out that the code originally provided by Jake includes all parameters required for the projection.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jamal&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jan 2014 18:08:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166800#M9324</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2014-01-17T18:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166801#M9325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dear Neil,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for the kind assistance. I downloaded this precipitation images from Famine Early Warning Systems Network of US Government &lt;/SPAN&gt;&lt;A href="http://earlywarning.usgs.gov/fews/africa/web/dwndailyrfe.php"&gt;http://earlywarning.usgs.gov/fews/africa/web/dwndailyrfe.php&lt;/A&gt;&lt;SPAN&gt; . When I open the file in ArcGIS and see spatial reference in properties, I so no reference. Is there any way out?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Prabin,&lt;BR /&gt;errr...&lt;BR /&gt;If the original bil images are not georeferenced then no amount of assigning a coordinate system / projecting and what not is going to help.&lt;BR /&gt;They are simply not georeferenced. You will have to go through a georeferencing step which involves picking control points from the image and assigning to these points their correct coordinates.&lt;BR /&gt;But that is rather odd, where did this raster data come from?&lt;BR /&gt;Neil&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 09:54:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166801#M9325</guid>
      <dc:creator>PrabinRokaya</dc:creator>
      <dc:date>2014-01-20T09:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Projecting multiple images from one coordinate system to another,</title>
      <link>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166802#M9326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Original User: GSCUser85&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just had a look at the site and downloaded one of the daily files.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;No spatial reference info....&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Even the extent :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Top 40.05&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bot -40.05&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Left -20.05&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Right 55.05&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Doesn't look like anything...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there any other info available on the site telling you where this stuff is in the world?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;N&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 05:45:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/projecting-multiple-images-from-one-coordinate/m-p/166802#M9326</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2014-01-21T05:45:25Z</dc:date>
    </item>
  </channel>
</rss>

