<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wiki-Bracket</id>
	<title>OSGeo - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wiki-Bracket"/>
	<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/wiki/Special:Contributions/Wiki-Bracket"/>
	<updated>2026-04-07T03:35:17Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.9</generator>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=PDX_OSGEO_20130717_Meeting&amp;diff=72595</id>
		<title>PDX OSGEO 20130717 Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=PDX_OSGEO_20130717_Meeting&amp;diff=72595"/>
		<updated>2013-07-17T22:52:54Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Bracket: /* Meeting notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Link back to [[PDX-OSGeo]]&lt;br /&gt;
== Time and Location  ==&lt;br /&gt;
* '''July 17th, 6-8pm'''&lt;br /&gt;
* '''Renewable Funding'''&lt;br /&gt;
* '''400 SW 6th Avenue, Suite 902'''&lt;br /&gt;
* '''Portland, OR 97204 USA'''&lt;br /&gt;
* [http://maps.google.com/maps?q=400+SW+6th+Avenue%2C+Suite+902%2C+Portland+OR+97204+US map]&lt;br /&gt;
* '''If you arrive after 6pm, please buzz the security guard, who will open the doors and let you up to the 9th floor.'''&lt;br /&gt;
* '''The office is through the double doors immediately to the left after exiting the elevators.'''&lt;br /&gt;
&lt;br /&gt;
= Agenda  =&lt;br /&gt;
# FOSS4G - PDX and DC tied/confused, [http://lists.osgeo.org/pipermail/conference_dev/2013-July/002311.html email list announcement]&lt;br /&gt;
# OSM building import plan for Portland (and beyond)&lt;br /&gt;
# Proposed T-Shirt order&lt;br /&gt;
# '''Sign up your stuff here!'''&lt;br /&gt;
&lt;br /&gt;
= Meeting notes  =&lt;br /&gt;
&lt;br /&gt;
In attendance: &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== FOSS4G ==&lt;br /&gt;
&lt;br /&gt;
== OSM building import ==&lt;br /&gt;
=== Portland ===&lt;br /&gt;
=== Other areas ===&lt;br /&gt;
&lt;br /&gt;
== T-Shirt order ==&lt;br /&gt;
&lt;br /&gt;
=== 10, August,  Anniversary of Open Streetmap (the 9th) -- a map party that day, else after labor day?===&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
&lt;br /&gt;
[[Category:PDX-OSGeo]]&lt;/div&gt;</summary>
		<author><name>Wiki-Bracket</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=PDX-OSGeo_2013_Unconference&amp;diff=70729</id>
		<title>PDX-OSGeo 2013 Unconference</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=PDX-OSGeo_2013_Unconference&amp;diff=70729"/>
		<updated>2013-05-07T22:01:45Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Bracket: /* The globe at OMSI challenge */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Registration ==&lt;br /&gt;
[http://pdxosgeo2013.eventbrite.com/ Register for the 2013 PDX-OSGeo unconference]&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
&lt;br /&gt;
=== ESRI on github for recent contest and a little D3 ===&lt;br /&gt;
&lt;br /&gt;
=== D3 ===&lt;br /&gt;
&lt;br /&gt;
=== Review Oregon Walks GIS Jam Inventory ===&lt;br /&gt;
* [http://rbracket.github.io/maptest/ review url]&lt;br /&gt;
&lt;br /&gt;
=== More stuff ===&lt;br /&gt;
&lt;br /&gt;
=== Data Munging with GDAL/OGR ===&lt;br /&gt;
* [http://gdal.org GDAL ]  and [http://gdal.org/ogr OGR] can be used for all kinds of raster and vector data manipulation.  It is the underlying engine for many softwares.  The command line and various language bindings are handy for scripts or inclusion in other software.&lt;br /&gt;
* Get information about USGS geopdf topo file:&lt;br /&gt;
 gdalinfo OR_Portland_282793_1897_62500_geo.pdf&lt;br /&gt;
* Convert geopdf to geotif:&lt;br /&gt;
 gdal_translate OR_Portland_282793_1897_62500_geo.pdf topo.tif&lt;br /&gt;
* Reproject Natural Earth data from WGS84 to Spereical Mercator:&lt;br /&gt;
 gdalwarp -s_srs EPSG:4326 -t_srs EPSG:3857 -r bilinear -te -20037508.34 -20037508.34 20037508.34 20037508.34 NE2_HR_LC_SR_W.tif natural-earth-2-mercator.tif --config GDAL_CACHEMAX 500&lt;br /&gt;
* Get info about that file (to confirm the change):&lt;br /&gt;
 gdalinfo natural-earth-2-mercator.tif&lt;br /&gt;
* Add overviews to file:&lt;br /&gt;
 gdaladdo -r average natural-earth-2-mercator.tif 2 4 8 16 32 64 128 256 1024 --config GDAL_CACHEMAX 400&lt;br /&gt;
* Get info about that file (note the overviews):&lt;br /&gt;
 gdalinfo natural-earth-2-mercator.tif&lt;br /&gt;
* Record these commands (if using Windows/dos):&lt;br /&gt;
 doskey /history &amp;gt; gdal_commands.txt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== QGIS tips ===&lt;br /&gt;
* Rename fields in shapefile with Table Manager plugin&lt;br /&gt;
* save as in a new format or projection (or properly assign projection)&lt;br /&gt;
* [http://prj2epsg.org/search Prj2EPSG] was shown as a way to get projection hints&lt;br /&gt;
* Other tips too&lt;br /&gt;
&lt;br /&gt;
=== Coast line segmentation and environmental response ===&lt;br /&gt;
&lt;br /&gt;
=== More stuff ===&lt;br /&gt;
&lt;br /&gt;
=== TileMill and very new vector TileMill ===&lt;br /&gt;
&lt;br /&gt;
=== The Science on a Sphere (SOS) challenge at OMSI ===&lt;br /&gt;
&lt;br /&gt;
== Notes for next year ==&lt;br /&gt;
* Remember to email previous year attendees&lt;br /&gt;
* Determine best day (in relation to GIS In Action and weekday/weekend)&lt;/div&gt;</summary>
		<author><name>Wiki-Bracket</name></author>
	</entry>
</feed>