Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8519173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T06:10:35+00:00 2026-06-11T06:10:35+00:00

I wrote a piece of code in python that converts a raster file to

  • 0

I wrote a piece of code in python that converts a raster file to ascii. Now, I need to make it handle possibly all files in the folder. Also, at the end save ascii files with the same name that the original with a suffix added.
I am a total newbee in python and i promise i did my homework, i could just not make the batch processing work on my own. Any help will be so much appreciated!!

import arcpy
from arcpy import env
env.workspace = "C:/Data"
inRaster = ("test.img")
outASCII = "c:/output/test3.asc"
arcpy.RasterToASCII_conversion(inRaster, outASCII)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T06:10:37+00:00Added an answer on June 11, 2026 at 6:10 am

    Try this out:

    import os
    dir_name = ...
    for filename in os.listdir(dir_name):
        if not filename.endswith(".img"): continue
        full_path = os.path.join(dir_name, filename)
        outASCII = '%s.asc' % (full_path,)
        arcpy.RasterToASCII_conversion(full_path, outASCII)
    

    It gets all the filenames ending in .img in the directory dir_name and passes it to your conversion function.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote this piece of code that is supposed to redirect something written on
I have a program I wrote in Windows with this piece of code that
I have one piece of Cocoa code I wrote that takes in an XML
Am trying to write a piece of python code that calculate and print 1000
I've used Python to write a piece of code that can be very time
I wrote a little piece of code to expose my problem. public class date
I've wrote this simple piece of code. And I have a slight problem with
I wrote a same(..similar?) piece of code for Java 7 and C#(.net 3.5) and
I'm trying to write a piece of code that takes in a two digit
I wrote some basic Python code to scrape a remote webpage and grab a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.