<?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: georeferencing Tiff in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8578545#M93265</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6430785"&gt;@dani-perez&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In that case, I will not be offering a specific answer to your particular request but...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unless you are being directly tasked with using your TIF, there are 2 perfectly acceptable alternative methods that I highly recommend...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) AutoCAD's BING maps.&lt;/P&gt;
&lt;P&gt;- since you have AutoCAD 2019, you have their built-in BING maps that allows you to import worldwide data using a selected coordinate system.&lt;/P&gt;
&lt;P&gt;- With your assigned coordinate system, you can use other "GEO-" prefixed commands to interact with your coordinate system.&lt;/P&gt;
&lt;P&gt;- Use the &lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2018/ENU/AutoCAD-Core/files/GUID-10A3B776-A0FA-4438-B29B-EA22C070A27E-htm.html" target="_blank" rel="noopener"&gt;GEO&lt;/A&gt; command, but first be sure you are logged in to your Autodesk account...&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 481px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/600179i4E9E442E501B544C/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) Use &lt;A href="https://www.esri.com/en-us/arcgis/products/arcgis-for-autocad" target="_blank" rel="noopener"&gt;ArcGIS for AutoCAD&lt;/A&gt;. ESRI and Autodesk have teamed up to bring you an awesome end-user experience for importing and saving maps within your drawings.&lt;/P&gt;
&lt;P&gt;- the coordinate systems with ArcGIS are assigned to correct coordinates in model space, unlike having to choose with BING maps.&lt;/P&gt;
&lt;P&gt;- you can snip and save raster-images of your selected coordinate system map. this allows you to move your map at-will if you would so like.&lt;/P&gt;
&lt;P&gt;- Using ArcGIS also allows you to import ANY overlay that is available publicly from their REST services. You can link to a REST database and overlay their maps with more data than a basic map!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;....... these 2 options are workflows that I use currently and they both allow for up-to-date imagery and ease-of-implementation. So in the essence of not trying to reinvent Civil 3D (somebody has already programmed coordinate systems for you! If you use coordinate systems frequently, just upgrade your license), you could use one or both of these methods to get your desired outcome.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;~DD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 06 Feb 2019 23:26:34 GMT</pubDate>
    <dc:creator>CodeDing</dc:creator>
    <dc:date>2019-02-06T23:26:34Z</dc:date>
    <item>
      <title>georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8569139#M93257</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to georeference tiff images with a lisp, I found this lisp&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;; #######################################################################
;
; 		Inserta una imagen TIFF georreferenciada
;
;                 Autor: Francisco Navarrete Mandly
;	  		    Noviembre 2001
; 
; #######################################################################

(defun C:INSIMG (/ fichtif fichtfw fp ex ey rx ry x0 y0 ent info dimx dimy)

	; Pide ficheros
	(if (not (setq fichtif (getfiled "Imagen a Insertar" "*" "tif" 2))) (exit))
	(setq fichtfw (strcat (substr fichtif 1 (- (strlen fichtif) 2)) "fw"))

	; Lee parametros
	(setq fp (open fichtfw "r"))
	(setq ex (atof (read-line fp)))
	(setq rx (read-line fp))
	(setq ry (read-line fp))
	(setq ey (atof (read-line fp)))
	(setq x0 (atof (read-line fp)))
	(setq y0 (atof (read-line fp)))
	(close fp)
	(setq ey (* ey -1))

	; Inserta imagen
	(command "._-IMAGE" "" fichtif (list x0 y0) 1.0 0.0)

	; Modifica posicion
	(setq ent (entlast))
	(setq info (entget ent))
	(setq nx (cadr (assoc 13 info)) ny (caddr (assoc 13 info)))
	(setq dimx (* nx ex) dimy (* ny ey))
	(setq y0 (- y0 dimy))
	(setq info (subst (list 10 x0 y0 0.0) (assoc 10 info) info))

	; Modifica tamaño
	(setq info (subst (list 11 ex 0.0 0.0) (assoc 11 info) info))
	(setq info (subst (list 12 0.0 ey 0.0) (assoc 12 info) info))
	(entmod info)
	
	(princ)
)
&lt;/PRE&gt;
&lt;P&gt;But when I am trying to insert a tiff image I get an error: "Stringp nil"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have been trying to fix the code but I don't know&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks all.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Feb 2019 21:31:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8569139#M93257</guid>
      <dc:creator>dani-perez</dc:creator>
      <dc:date>2019-02-02T21:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8569815#M93258</link>
      <description>&lt;P&gt;You can try the GeoRefImg freeware app, with more options.&lt;/P&gt;
&lt;P&gt;See&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.cadstudio.cz/georefimg" target="_blank"&gt;https://www.cadstudio.cz/georefimg&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and&lt;/P&gt;
&lt;P&gt;&lt;A href="https://apps.autodesk.com/ACD/en/Detail/Index?id=7718964543906860174&amp;amp;appLang=en&amp;amp;os=Win32_64" target="_blank"&gt;https://apps.autodesk.com/ACD/en/Detail/Index?id=7718964543906860174&amp;amp;appLang=en&amp;amp;os=Win32_64&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Vladimir Michl, &lt;A href="http://www.cadstudio.cz" target="_blank"&gt;www.cadstudio.cz&lt;/A&gt; - &lt;A href="http://www.cadforum.cz" target="_blank"&gt;www.cadforum.cz&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Feb 2019 17:20:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8569815#M93258</guid>
      <dc:creator>vladimir_michl</dc:creator>
      <dc:date>2019-02-03T17:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8569834#M93259</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6430785"&gt;@dani-perez&lt;/a&gt;&amp;nbsp; hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you want to attach image with lisp? why IMAGEATTACH is not enough?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;anyhow this lisp can attach&amp;nbsp;&lt;U&gt;only one specific tif file,&lt;/U&gt;&amp;nbsp;position and scale it base on some data text file contains these parameters. why i think it's only one specific? cause the data text file name is base on the image name plus "fw" and i can not image the &lt;SPAN&gt;author has prepared such data files to any image.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;so when you say i found this lisp? are you sure you want to use it?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;moshe&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Feb 2019 17:42:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8569834#M93259</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2019-02-03T17:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8571768#M93260</link>
      <description>&lt;P&gt;You could try using &lt;A href="http://www.theswamp.org/index.php?topic=8904.msg114258#msg114258" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;THIS&lt;/STRONG&gt;&lt;/A&gt; very old code.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 16:38:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8571768#M93260</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2019-02-04T16:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8575292#M93261</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN class="UserName lia-user-name lia-user-rank-Advisor lia-component-message-view-widget-author-username"&gt;&lt;A id="link_17" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/239200" target="_self"&gt;&lt;SPAN class="login-bold"&gt;vladimir.michl&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Advisor lia-component-message-view-widget-author-username"&gt;&lt;SPAN class="login-bold"&gt;Hello&amp;nbsp;&lt;A id="link_12" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837" target="_self"&gt;&lt;SPAN class=""&gt;rperez&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Advisor lia-component-message-view-widget-author-username"&gt;&lt;SPAN class="login-bold"&gt;Very interesing code. Thanks a lot for replying&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I have other doubt: if the file has georreference metadata (as .ECW) is there a way to attach it at the correct coordinates using autocad if you dont have any worldfile? not civil3d or autocad map&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 21:07:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8575292#M93261</guid>
      <dc:creator>dani-perez</dc:creator>
      <dc:date>2019-02-05T21:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8575308#M93262</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;A id="link_12" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747" target="_self"&gt;&lt;SPAN class=""&gt;Moshe-A&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for replying.&lt;/P&gt;
&lt;P&gt;With the codes posted by vladimir and rperez, I can attach a raster image in its correct georreference position using a wordfile. It's a very interesting step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My idea is to attach an image and place it in its position (ortophoto for example). Now my idea is to attach it without that wordfile (just internal metadata) in order to solve all posibilities of this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 21:12:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8575308#M93262</guid>
      <dc:creator>dani-perez</dc:creator>
      <dc:date>2019-02-05T21:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8575431#M93263</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6430785"&gt;@dani-perez&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What version/year of AutoCAD are you using? Ex: Civil 3D 2018? AutoCAD 2016? LT 2019?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 21:57:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8575431#M93263</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2019-02-05T21:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8577869#M93264</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN class=""&gt;&lt;A id="link_12" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5680873" target="_self"&gt;CodeDing&lt;/A&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;I am using AutoCAD 2019.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 18:43:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8577869#M93264</guid>
      <dc:creator>dani-perez</dc:creator>
      <dc:date>2019-02-06T18:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8578545#M93265</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6430785"&gt;@dani-perez&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In that case, I will not be offering a specific answer to your particular request but...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unless you are being directly tasked with using your TIF, there are 2 perfectly acceptable alternative methods that I highly recommend...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) AutoCAD's BING maps.&lt;/P&gt;
&lt;P&gt;- since you have AutoCAD 2019, you have their built-in BING maps that allows you to import worldwide data using a selected coordinate system.&lt;/P&gt;
&lt;P&gt;- With your assigned coordinate system, you can use other "GEO-" prefixed commands to interact with your coordinate system.&lt;/P&gt;
&lt;P&gt;- Use the &lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2018/ENU/AutoCAD-Core/files/GUID-10A3B776-A0FA-4438-B29B-EA22C070A27E-htm.html" target="_blank" rel="noopener"&gt;GEO&lt;/A&gt; command, but first be sure you are logged in to your Autodesk account...&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 481px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/600179i4E9E442E501B544C/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) Use &lt;A href="https://www.esri.com/en-us/arcgis/products/arcgis-for-autocad" target="_blank" rel="noopener"&gt;ArcGIS for AutoCAD&lt;/A&gt;. ESRI and Autodesk have teamed up to bring you an awesome end-user experience for importing and saving maps within your drawings.&lt;/P&gt;
&lt;P&gt;- the coordinate systems with ArcGIS are assigned to correct coordinates in model space, unlike having to choose with BING maps.&lt;/P&gt;
&lt;P&gt;- you can snip and save raster-images of your selected coordinate system map. this allows you to move your map at-will if you would so like.&lt;/P&gt;
&lt;P&gt;- Using ArcGIS also allows you to import ANY overlay that is available publicly from their REST services. You can link to a REST database and overlay their maps with more data than a basic map!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;....... these 2 options are workflows that I use currently and they both allow for up-to-date imagery and ease-of-implementation. So in the essence of not trying to reinvent Civil 3D (somebody has already programmed coordinate systems for you! If you use coordinate systems frequently, just upgrade your license), you could use one or both of these methods to get your desired outcome.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;~DD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2019 23:26:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/8578545#M93265</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2019-02-06T23:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/12988308#M93266</link>
      <description>&lt;P&gt;I downloaded the code but it is not working. Could anyone have a look?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2024 06:43:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/12988308#M93266</guid>
      <dc:creator>dani_cs</dc:creator>
      <dc:date>2024-08-29T06:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/12988456#M93267</link>
      <description>&lt;P&gt;I just checked the code from original poster and it works ok.&lt;/P&gt;
&lt;P&gt;What you need is Tiff file and corresponding tfw file with the same name as the tiff file.&lt;/P&gt;
&lt;P&gt;Let say 221-4-3.tif and 221-4-3.tfw&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2024 07:58:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/12988456#M93267</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2024-08-29T07:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/12988643#M93268</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to load the lisp, but it gives me an error (translated from Spanish): "Error: wrong format input list"&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2024 09:21:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/12988643#M93268</guid>
      <dc:creator>dani_cs</dc:creator>
      <dc:date>2024-08-29T09:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/12989272#M93269</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6218966"&gt;@dani_cs&lt;/a&gt;&amp;nbsp;I've been using &lt;A href="https://www.theswamp.org/index.php?topic=8904.msg114258#msg114258" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;this code&lt;/STRONG&gt;&lt;/A&gt; for years without issue.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Aug 2024 14:25:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/12989272#M93269</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2024-08-29T14:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/13098574#M93270</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help me how to use your code?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I don't undersand about .twf file.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 19:46:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/13098574#M93270</guid>
      <dc:creator>F.Camargo</dc:creator>
      <dc:date>2024-10-21T19:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: georeferencing Tiff</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/13101151#M93271</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1270409"&gt;@F.Camargo&lt;/a&gt;&amp;nbsp;The TFW file should be included with your aerial. It needs to have the same name as the TIF file and the code should correctly scale the image.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 17:47:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/georeferencing-tiff/m-p/13101151#M93271</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2024-10-22T17:47:02Z</dc:date>
    </item>
  </channel>
</rss>

