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?
Is this a crack on the carbon frame?
Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)
Risk of getting Chronic Wasting Disease (CWD) in the United States?
What defenses are there against being summoned by the Gate spell?
What typically incentivizes a professor to change jobs to a lower ranking university?
Test whether all array elements are factors of a number
Prove that NP is closed under karp reduction?
How to format long polynomial?
Do VLANs within a subnet need to have their own subnet for router on a stick?
How does strength of boric acid solution increase in presence of salicylic acid?
How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?
Email Account under attack (really) - anything I can do?
Writing rule stating superpower from different root cause is bad writing
Why was the small council so happy for Tyrion to become the Master of Coin?
Have astronauts in space suits ever taken selfies? If so, how?
How does one intimidate enemies without having the capacity for violence?
Why does Kotter return in Welcome Back Kotter?
What do the dots in this tr command do: tr .............A-Z A-ZA-Z <<< "JVPQBOV" (with 13 dots)
If I cast Expeditious Retreat, can I Dash as a bonus action on the same turn?
Is it important to consider tone, melody, and musical form while writing a song?
How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?
Why not use SQL instead of GraphQL?
What are the differences between the usage of 'it' and 'they'?
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
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?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am very new to Python and trying to project many raster files using arcpy. Here is the screenshot of my raster files.
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.
arcpy coordinate-system error-999999
New contributor
add a comment |
I am very new to Python and trying to project many raster files using arcpy. Here is the screenshot of my raster files.
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.
arcpy coordinate-system error-999999
New contributor
1
Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.
– Vince
Apr 3 at 1:19
If you want to define a projection to the raster data, you need to usearcpy.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 usearcpy.ProjectRaster_management
. pro.arcgis.com/en/pro-app/tool-reference/data-management/…
– ahmadhanb
Apr 3 at 1:20
add a comment |
I am very new to Python and trying to project many raster files using arcpy. Here is the screenshot of my raster files.
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.
arcpy coordinate-system error-999999
New contributor
I am very new to Python and trying to project many raster files using arcpy. Here is the screenshot of my raster files.
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.
arcpy coordinate-system error-999999
arcpy coordinate-system error-999999
New contributor
New contributor
edited Apr 3 at 2:34
PolyGeo♦
53.9k1781245
53.9k1781245
New contributor
asked Apr 3 at 1:08
Zhenyu YaoZhenyu Yao
111
111
New contributor
New contributor
1
Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.
– Vince
Apr 3 at 1:19
If you want to define a projection to the raster data, you need to usearcpy.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 usearcpy.ProjectRaster_management
. pro.arcgis.com/en/pro-app/tool-reference/data-management/…
– ahmadhanb
Apr 3 at 1:20
add a comment |
1
Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.
– Vince
Apr 3 at 1:19
If you want to define a projection to the raster data, you need to usearcpy.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 usearcpy.ProjectRaster_management
. pro.arcgis.com/en/pro-app/tool-reference/data-management/…
– ahmadhanb
Apr 3 at 1:20
1
1
Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.
– Vince
Apr 3 at 1:19
Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.
– Vince
Apr 3 at 1:19
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
Apr 3 at 1:20
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
Apr 3 at 1:20
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
Please remember to post error messages as ASCII text in the body of the question. Images are not searchable or legible.
– Vince
Apr 3 at 1:19
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 usearcpy.ProjectRaster_management
. pro.arcgis.com/en/pro-app/tool-reference/data-management/…– ahmadhanb
Apr 3 at 1:20