Projecting many raster files to coordinate system using ArcPy gives ERROR 999999?Error when Projecting...

Can a virus destroy the BIOS of a modern computer?

In the UK, is it possible to get a referendum by a court decision?

Was the Stack Exchange "Happy April Fools" page fitting with the '90's code?

Unlock My Phone! February 2018

Rotate ASCII Art by 45 Degrees

Placement of More Information/Help Icon button for Radio Buttons

Is it "common practice in Fourier transform spectroscopy to multiply the measured interferogram by an apodizing function"? If so, why?

Do Iron Man suits sport waste management systems?

Do creatures with a listed speed of "0 ft., fly 30 ft. (hover)" ever touch the ground?

Send out email when Apex Queueable fails and test it

Bullying boss launched a smear campaign and made me unemployable

Is there a hemisphere-neutral way of specifying a season?

How to travel to Japan while expressing milk?

What do you call someone who asks many questions?

Does int main() need a declaration on C++?

Should I tell management that I intend to leave due to bad software development practices?

Finitely generated matrix groups whose eigenvalues are all algebraic

If a warlock makes a Dancing Sword their pact weapon, is there a way to prevent it from disappearing if it's farther away for more than a minute?

Mathematica command that allows it to read my intentions

Why were 5.25" floppy drives cheaper than 8"?

Could the museum Saturn V's be refitted for one more flight?

How to install cross-compiler on Ubuntu 18.04?

Forgetting the musical notes while performing in concert

Implication of namely



Projecting many raster files to coordinate system using ArcPy gives ERROR 999999?


Error when Projecting Rasters using ArcPy?Project a set of coordinates - points from Excel to a shapefile with unknown coordinate system (map-match)Projected raster data has inconsistent extent but not shapefileDo I need to reproject a NAD83 raster (with no projection) before using it with a shapefile that has a specific NAD83 projection?Why does the difference between two overlapping rasters exist?Error 999999 with Project RasterRe-projecting Multiple Shapefiles using ArcPy?ArcPy: 999999 ERROR when using AddJoin_managementArcGIS Desktop enforcing Vertical Coordinate System properties for rasters?Executing CostDistance Function in ArcPy gives Error 999999?













0















I am very new to Python and trying to project many raster files using arcpy. Here is the screenshot of my raster files.



enter image description here



These raster files have an unknown coordinate system but I can project them with "ProjectRaster" in ArcGIS pro using 'GCS_WGS_1984'. I looked several online examples and revise one of them but could not work. Here is my scripts.



import acrpy
import os
arcpy.env.workspace = "D:/STAR/assignment/assignment7/info_data_test" #The
file where your files are
arcpy.env.overwriteOutput = True
outWorkspace = "D:/STAR/assignment/assignment7/info_data_test_results" #where
you want the new rasters to go
arcpy.env.parallelProcessingFactor = "50"
rasters = arcpy.ListRasters()

#Begin loop

for inrl in rasters:

# Determine if the input has a defined coordinate system, can't project it if
it does not
dsc = arcpy.Describe(inrl)

if dsc.spatialReference.Name == "Unknown":
# Determine the new output feature class path and name
outrl = os.path.join(outWorkspace, inrl)

# Set output coordinate system
outCS = arcpy.SpatialReference('GCS_WGS_1984')

# run project tool
arcpy.AddMessage("Reprojecting" + inrl)
arcpy.Project_management(inrl, outrl, outCS)

# check messages
print(arcpy.GetMessages())

else:

print ('skipped this raster file: ' + inrl)

print(arcpy.AddMessage("Reprojection complete"))

print "Script run ok"


When I ran this script, there appear mistakes. Here is the screenshot of error information.



enter image description here










share|improve this question









New contributor




Zhenyu Yao is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.

    – Vince
    1 hour ago











  • If you want to define a projection to the raster data, you need to use arcpy.DefineProjection_management(). Look at this help: pro.arcgis.com/en/pro-app/tool-reference/data-management/…. If you want to change the projection of raster data from one projection to another, you need to use arcpy.ProjectRaster_management. pro.arcgis.com/en/pro-app/tool-reference/data-management/…

    – ahmadhanb
    1 hour ago


















0















I am very new to Python and trying to project many raster files using arcpy. Here is the screenshot of my raster files.



enter image description here



These raster files have an unknown coordinate system but I can project them with "ProjectRaster" in ArcGIS pro using 'GCS_WGS_1984'. I looked several online examples and revise one of them but could not work. Here is my scripts.



import acrpy
import os
arcpy.env.workspace = "D:/STAR/assignment/assignment7/info_data_test" #The
file where your files are
arcpy.env.overwriteOutput = True
outWorkspace = "D:/STAR/assignment/assignment7/info_data_test_results" #where
you want the new rasters to go
arcpy.env.parallelProcessingFactor = "50"
rasters = arcpy.ListRasters()

#Begin loop

for inrl in rasters:

# Determine if the input has a defined coordinate system, can't project it if
it does not
dsc = arcpy.Describe(inrl)

if dsc.spatialReference.Name == "Unknown":
# Determine the new output feature class path and name
outrl = os.path.join(outWorkspace, inrl)

# Set output coordinate system
outCS = arcpy.SpatialReference('GCS_WGS_1984')

# run project tool
arcpy.AddMessage("Reprojecting" + inrl)
arcpy.Project_management(inrl, outrl, outCS)

# check messages
print(arcpy.GetMessages())

else:

print ('skipped this raster file: ' + inrl)

print(arcpy.AddMessage("Reprojection complete"))

print "Script run ok"


When I ran this script, there appear mistakes. Here is the screenshot of error information.



enter image description here










share|improve this question









New contributor




Zhenyu Yao is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
















  • 1





    Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.

    – Vince
    1 hour ago











  • If you want to define a projection to the raster data, you need to use arcpy.DefineProjection_management(). Look at this help: pro.arcgis.com/en/pro-app/tool-reference/data-management/…. If you want to change the projection of raster data from one projection to another, you need to use arcpy.ProjectRaster_management. pro.arcgis.com/en/pro-app/tool-reference/data-management/…

    – ahmadhanb
    1 hour ago
















0












0








0








I am very new to Python and trying to project many raster files using arcpy. Here is the screenshot of my raster files.



enter image description here



These raster files have an unknown coordinate system but I can project them with "ProjectRaster" in ArcGIS pro using 'GCS_WGS_1984'. I looked several online examples and revise one of them but could not work. Here is my scripts.



import acrpy
import os
arcpy.env.workspace = "D:/STAR/assignment/assignment7/info_data_test" #The
file where your files are
arcpy.env.overwriteOutput = True
outWorkspace = "D:/STAR/assignment/assignment7/info_data_test_results" #where
you want the new rasters to go
arcpy.env.parallelProcessingFactor = "50"
rasters = arcpy.ListRasters()

#Begin loop

for inrl in rasters:

# Determine if the input has a defined coordinate system, can't project it if
it does not
dsc = arcpy.Describe(inrl)

if dsc.spatialReference.Name == "Unknown":
# Determine the new output feature class path and name
outrl = os.path.join(outWorkspace, inrl)

# Set output coordinate system
outCS = arcpy.SpatialReference('GCS_WGS_1984')

# run project tool
arcpy.AddMessage("Reprojecting" + inrl)
arcpy.Project_management(inrl, outrl, outCS)

# check messages
print(arcpy.GetMessages())

else:

print ('skipped this raster file: ' + inrl)

print(arcpy.AddMessage("Reprojection complete"))

print "Script run ok"


When I ran this script, there appear mistakes. Here is the screenshot of error information.



enter image description here










share|improve this question









New contributor




Zhenyu Yao is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I am very new to Python and trying to project many raster files using arcpy. Here is the screenshot of my raster files.



enter image description here



These raster files have an unknown coordinate system but I can project them with "ProjectRaster" in ArcGIS pro using 'GCS_WGS_1984'. I looked several online examples and revise one of them but could not work. Here is my scripts.



import acrpy
import os
arcpy.env.workspace = "D:/STAR/assignment/assignment7/info_data_test" #The
file where your files are
arcpy.env.overwriteOutput = True
outWorkspace = "D:/STAR/assignment/assignment7/info_data_test_results" #where
you want the new rasters to go
arcpy.env.parallelProcessingFactor = "50"
rasters = arcpy.ListRasters()

#Begin loop

for inrl in rasters:

# Determine if the input has a defined coordinate system, can't project it if
it does not
dsc = arcpy.Describe(inrl)

if dsc.spatialReference.Name == "Unknown":
# Determine the new output feature class path and name
outrl = os.path.join(outWorkspace, inrl)

# Set output coordinate system
outCS = arcpy.SpatialReference('GCS_WGS_1984')

# run project tool
arcpy.AddMessage("Reprojecting" + inrl)
arcpy.Project_management(inrl, outrl, outCS)

# check messages
print(arcpy.GetMessages())

else:

print ('skipped this raster file: ' + inrl)

print(arcpy.AddMessage("Reprojection complete"))

print "Script run ok"


When I ran this script, there appear mistakes. Here is the screenshot of error information.



enter image description here







arcpy coordinate-system error-999999






share|improve this question









New contributor




Zhenyu Yao is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Zhenyu Yao is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 3 mins ago









PolyGeo

53.9k1781245




53.9k1781245






New contributor




Zhenyu Yao is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 1 hour ago









Zhenyu YaoZhenyu Yao

1




1




New contributor




Zhenyu Yao is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Zhenyu Yao is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Zhenyu Yao is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 1





    Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.

    – Vince
    1 hour ago











  • If you want to define a projection to the raster data, you need to use arcpy.DefineProjection_management(). Look at this help: pro.arcgis.com/en/pro-app/tool-reference/data-management/…. If you want to change the projection of raster data from one projection to another, you need to use arcpy.ProjectRaster_management. pro.arcgis.com/en/pro-app/tool-reference/data-management/…

    – ahmadhanb
    1 hour ago
















  • 1





    Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.

    – Vince
    1 hour ago











  • If you want to define a projection to the raster data, you need to use arcpy.DefineProjection_management(). Look at this help: pro.arcgis.com/en/pro-app/tool-reference/data-management/…. If you want to change the projection of raster data from one projection to another, you need to use arcpy.ProjectRaster_management. pro.arcgis.com/en/pro-app/tool-reference/data-management/…

    – ahmadhanb
    1 hour ago










1




1





Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.

– Vince
1 hour ago





Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.

– Vince
1 hour ago













If you want to define a projection to the raster data, you need to use arcpy.DefineProjection_management(). Look at this help: pro.arcgis.com/en/pro-app/tool-reference/data-management/…. If you want to change the projection of raster data from one projection to another, you need to use arcpy.ProjectRaster_management. pro.arcgis.com/en/pro-app/tool-reference/data-management/…

– ahmadhanb
1 hour ago







If you want to define a projection to the raster data, you need to use arcpy.DefineProjection_management(). Look at this help: pro.arcgis.com/en/pro-app/tool-reference/data-management/…. If you want to change the projection of raster data from one projection to another, you need to use arcpy.ProjectRaster_management. pro.arcgis.com/en/pro-app/tool-reference/data-management/…

– ahmadhanb
1 hour ago












0






active

oldest

votes












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "79"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






Zhenyu Yao is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317572%2fprojecting-many-raster-files-to-coordinate-system-using-arcpy-gives-error-999999%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








Zhenyu Yao is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















Zhenyu Yao is a new contributor. Be nice, and check out our Code of Conduct.













Zhenyu Yao is a new contributor. Be nice, and check out our Code of Conduct.












Zhenyu Yao is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317572%2fprojecting-many-raster-files-to-coordinate-system-using-arcpy-gives-error-999999%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Щит и меч (фильм) Содержание Названия серий | Сюжет |...

is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

Meter-Bus Содержание Параметры шины | Стандартизация |...