![]() |
![]() |
Articles / TULARC / Science / GIS / | ![]() |
|
![]() |
||||
![]() |
![]() |
|||
![]() |
![]() |
|||
![]() |
||||
|
|
||||
![]() |
![]() |
|||
![]() |
6.7: How can I convert ARC files to some other graphics formats? (Geographic Information Systems) |
![]() |
||
![]() |
||||
![]() |
![]() |
![]() |
||
![]() |
||||
![]() |
![]() |
![]() |
![]() |
||
![]() |
||
![]() |
![]() |
![]() |
![]() |
||
|
|
||
![]() |
||
![]() |
![]() |
![]() |
![]() |
||
![]() |
||
This article is from the Geographic Information Systems FAQ, by Lisa Nyman lnyman@census.gov with numerous contributions by others.
Summary From: Fred J. Calef III <mapduxbury@UMBSKY.CC.UMB.EDU>
POSTSCRIPT: It seems the postscript file Arc/INFO makes is not a
true Encapsulated Postscript File. It seems to be a little more
than a plain postscript file but not quite an EPS file. Here are
some solutions.
1) Use the unix2dos command on unix systems to add control-returns
to the file which dos needs to read the file properly (Arc/INFO's
postscript file being an ASCII file)
2) FTP the file using the ASCII option because the postscript file
is in ASCII format
3) Use the Ghost Script utility (available via FTP) to read the file,
then output it in EPS format.
****As a special note, GhostScript can be FTPed from prep.ai.mit.edu
in directory /pub/gnu.
4) Use a program that reads pure ASCII postscript files (such as Word on
the Macintosh)
ADOBE ILLUSTRATOR: This file format is similiar to postscript, but with
some differences (whatever they are). I received some specific responses
to correcting this format.
1) Edit the file and add these lines after the line containing %%EndProlog
(said to be line 8):
%%BeginSetup
%%EndSetup
This supposedly makes it readable with Corel Draw.
2) Make sure you close the file by issuing another DISPLAY command or
QUITting out of Arcplot. This puts the bounding box around the file.
3) You can run an awk program in the unix environment to fix the file. Here
is the command line:
nawk -f fix_ai.awk bad_ai_file > good_ai_file
Here is the awk program:
# Program to convert Arc/Info Illustrator output so Corel Draw
# can handle it.
{
print;
}
/EndProlog/ {
print "%%BeginSetup"
print "%%EndSetup"
}
 
Continue to:
science, engineering, geographic information systems, GIS, NCGIA, maps
![]() |
|
|