summaryrefslogtreecommitdiff
path: root/geography
AgeCommit message (Collapse)AuthorFilesLines
2015-08-22Import of libmemphis02 to pkgsrc-current from pkgsrc-wip.nros7-0/+117
Imported to pkgsrc-wip by myself(nros). Memphis is a library for OpenStreetMap written in C using eXpat, Cairo and GLib. It's licensed under the terms of the GNU Lesser General Public License.
2015-08-18Bump all packages that depend on curses.bui* or terminfo.bui* since theywiz1-2/+2
might incur ncurses dependencies on some platforms, and ncurses just bumped its shlib. Some packages were bumped twice now, sorry for that.
2015-08-17Bump PKGREVISION for ncurses shlib bump.wiz1-2/+2
2015-08-14Update py-geojson to 1.3.0.kleink2-6/+6
1.3.0 (2015-08-11) ------------------ - Add utility to generate geometries with random data - https://github.com/frewsxcv/python-geojson/pull/60
2015-08-06Update py-geojson to 1.2.2.kleink3-7/+10
1.2.2 (2015-07-13) ------------------ - Fix tests by including test file into build - https://github.com/frewsxcv/python-geojson/issues/61 - Build universal wheels - https://packaging.python.org/en/latest/distributing.html#universal-wheels 1.2.1 (2015-06-25) ------------------ - Encode long types correctly with Python 2.x - https://github.com/frewsxcv/python-geojson/pull/57 1.2.0 (2015-06-19) ------------------ - Utility function to validate GeoJSON objects - https://github.com/frewsxcv/python-geojson/pull/56 1.1.0 (2015-06-08) ------------------ - Stop outputting invalid GeoJSON value id=null on Features - https://github.com/frewsxcv/python-geojson/pull/53
2015-07-26Update 0.17 to 0.18mef2-6/+6
Version 0.18 (2014-12-17) ------------------------- * Nils Enevoldsen did wonderful work refactoring most of the regex in the dictionary. * Nils also added a bunch of tests. Thanks! * Added Tokelau
2015-07-13+osm-gps-map - the new version of gramps can use this.rodent1-1/+2
2015-07-13Import osm-gps-map-1.0.2 as geography/osm-gps-map.rodent5-0/+96
osm-gps-map is a Gtk mapping widget that when given GPS co-ordinates, draws a GPS track, and points of interest on a moving map display. osm-gps-map Downloads map data from a number of websites, including openstreetmap.org, openaerialmap.org and others and can be used to build desktop mapping or geolocation applications.
2015-06-30Recursive revbump from pkgsrc/multimedia/libvpx.ryoon1-2/+2
2015-06-25Explicitly depend on libxml2 now.joerg1-1/+2
2015-06-12Recursive PKGREVISION bump for all packages mentioning 'perl',wiz9-16/+18
having a PKGNAME of p5-*, or depending such a package, for perl-5.22.0.
2015-06-10+ osm2pgsqlwiedi1-1/+2
2015-06-10Import osm2pgsql-0.87.3 as geography/osm2pgsqlwiedi6-0/+107
Converts OSM planet.osm data to a PostgreSQL / PostGIS database suitable for specific applications like rendering into map tiles by Mapnik or geocoding with Nominatim.
2015-06-10Be explicit about libjson-c and buildlink libxml2wiedi1-1/+3
2015-06-07Update libsoup references in buildlink files.youri3-6/+6
2015-06-07Update libsoup buildlink path.youri3-6/+6
2015-06-06Fix MASTER_SITES after adjusting mirrored distfile location to followgdt1-3/+4
MASTER_SITE_LOCAL convention.
2015-06-06Update to 1.5.2.gdt5-29/+125
pkgsrc changes: add bash exorcism for testo upstream changes: Depend on QT, and much rewriting Summary of upstream changes: 1.5.2 Add read support for Google's "gx:track" extension to KML. Ralf Horstmann adds Mynav Map Manager and VDO GP7. White B. Coot adds F90G support. Zingo Andersonadds Energympro sport watches. Support altitude in mainnav. 1.5.1 Add options to discard filter to discard points based on regular expressions. Experimental support for for faster Garmin serial download speeds. 1.5.0 GPSBabel 1.4.x has had a good run. That series has been downloaded over a million times and is widely used by thousands of people a day. But, like many projects entering their teens (I started the code that became GPSBabel in 2001) we've accumulated our share of technical debt and the world around us has changed. GPSBabel 1.5 is about revisiting some of those early, fundamental (and, sometimes, dumb) decisions and rebuilding much of it from the foundation up. We've collected hundreds of changes spanning about a hundred thousand lines of code and we're presenting GPSBabel 1.5. Of course, if you're an existing user, you're looking for new formats and fixes. We happen to have those. Freshly added: Mapbar Garmin G1000 Google Direction API MTK Locus Lowrance USR v4 GlobalSat DG-200 Humminbird v4 We have fixes: GUI now lists help button on main screen and options pages. TODO: list more. By far, our deepest cutting changes are in our infrastructure. We changed the implementation language from C89 to C++03. This lets our developers use modern, object-oriented programming and modern libraries. We moved to the open source Qt toolkit. We've successfully used Qt in the GUI for over five years. This lets us focus on GPSBabel itself and not implementi ng our own OS abstractions from scratch, robust string and time handling, and much more. We replaced time from our old representation that used the number of seconds since 1/1/1970 and had a fractional seconds component bolted onto the side (that was only sometimes used) with a QDateTime which allows us to represent time within millisecond resolution from Jan 2, 4713 BCE to sometimes in the year 11 million. While that sounds crazy (it is!) this lets things like the track filter not mangle data collected by your 10Hz GPS and your placemarks can have dates that, say, buildings were built or cities were founded without worrying about Jan 1, 1970. We replaced all of our XML (GPX, KML, Geo, etc) readers with Qt readers. This reduces the number of data-specific bugs you're likely to encounter. No longer will a waypoint named "]]" (it happens!) crash your data. We're much more robust when reading extended namespaces. We replaced our own XML writers with Qt's XML serializers. This solves a whole class of data-specific issues with specific fields containing data like "<" or "[[<CDATA" (it happens!) or international characters or such. Reference counted, dynamic strings are now used in the majority of our key data structures, eliminating leaks and allowing multiple copies of the same data to share a copy in memory, lessening the amount of memory we use. A lot of emphasis as been placed on sound engineering. GPSBabel now has automated tests covering hundreds of thousands of operations to check against memory leaks, overwrites, unused code, uninitialized data use and so on. We believe this to be our highest quality release ever. As a result of all this remodelling, some of our formats that our statistics showed were infrequently used and that had little to no support traffic in many years were removed. Most of these were formats for Palm OS, were never mentioned after they were initially added, or are for companies that have been out of business for years or that have moved to better formats, like GPX. These include: Deprecated formats - Palm/OS cetus copilot coto gcdb geoniche gpilots gpspilot mag_pdb magnav palmdoc pathaway quovadis Others axim_gpb coastexp hsandv ktf2 kwf2 msroute msroute1 psp sportsim
2015-05-30Add py-obspywen1-1/+2
2015-05-30Import ObsPy-0.10.2 as geography/py-obspy.(Based pkgsrc/wip/py-obspy)wen4-0/+1771
ObsPy is an open-source project dedicated to provide a Python framework for processing seismological data.
2015-05-01Update to 2.60wen2-8/+7
Update my mail Upstream changes: 2.60 2014-03-14 - Add method to obtain the dbf header information. https://github.com/shawnlaffan/Geo-ShapeFile/issues/15 - Clean up some POD formatting issues. 2.58 2014-03-06 - CPAN testers are green for 2.57_001 so make a production release. - Fix incorrect passing of arguments in the shape index. This should not affect most existing code as the indexing is only used when called explicitly. https://github.com/shawnlaffan/Geo-ShapeFile/issues/14 - Croak when an invalid file name is passed. https://github.com/shawnlaffan/Geo-ShapeFile/issues/13 2.57_001 2014-03-05 Development release towards 2.58. Changes are listed there. 2.56 2014-02-18 - Shawn Laffan - CPAN testers are green for 2.55_001, so bump the version number and release as a full version. 2.55_001 2014-02-17 - Shawn Laffan - Add Geo::ShapeFile::Shape::Index as a simple 2-d block based index. - Geo::Shape::ShapeFile now uses a spatial index for the segments. This speeds up the contains_point routines by about 50-70% when used. The index is opt-in at the moment, so will have no effect on existing code. - Geo::ShapeFile::get_part now returns an array ref in scalar context. - Geo::ShapeFile::Point::angle_to now works. - Many of the undocumented methods have been renamed to use a leading underscore, as they are private methods. This avoids a number of POD test warnings. - Add parent, POSIX and autovovofication to the list of dependencies in the makefile. 2.54 2014-02-11 - Shawn Laffan - Fix https://rt.cpan.org/Ticket/Display.html?id=89563 Thanks to Daniel Smith for reporting, and also providing an optimisation which also handles edge overlap cases. - Reorganise the test suite to allow running of subsets of tests. 2.53_003 2014-02-10 - Shawn Laffan - Clear up several longstanding RT tickets: - https://rt.cpan.org/Ticket/Display.html?id=46698 Clarify docs such that point objects are passed to has_point, not coordinates. - https://rt.cpan.org/Ticket/Display.html?id=46068 Values returned from width and height were swapped. Thanks to Le Goddard for reporting. - https://rt.cpan.org/Ticket/Display.html?id=49054 $@ should have been @_ (thanks to rgsave@hotmail.com for reporting) - https://rt.cpan.org/Ticket/Display.html?id=92790 DBF field names can now be accessed in file order. - https://rt.cpan.org/Ticket/Display.html?id=63347 corners were incorrectly reported. Thanks to Liam Gretton for reporting. - Reorganise the test suite to use subtests, with tests in subs. Add more tests. - General formatting and style changes to the code. - Add List::Util as a dependency. - Development is now on github, so update the metadata to reflect this. https://github.com/shawnlaffan/Geo-ShapeFile
2015-05-01Update to 0.11wen2-7/+6
Upstream changes: 0.10 Mon Mar 25 19:05:12 2013 - fixed error in Everest Pakistan ellipsoid axis - Added Arc 1950 ellipsoid - patched MGRS calculations for S. Hemisphere - Added MGRS tests 0.11 Tue May 21 13:26:14 2013 - Added NAD27 and NAD83 ellipsoids
2015-04-25Recursive revbump following MesaLib update, categories g through n.tnn17-31/+34
2015-04-06Revbump after updating textproc/icuadam9-18/+18
2015-04-03Recursive bump for vala-0.28.0 update.wiz1-2/+2
2015-03-31Add missing header for rand(3).joerg2-1/+14
2015-03-19Update to 1.9.4 (leaf).gdt3-13/+19
This required a fairly massive rototill of the PKGNAME/DISTNAME because of bugs in upstream distfile generation, reported at https://github.com/jswhit/pyproj/issues/7 But there are no signficant changes in packaging other than coping with the distfile naming bug. 1.9.4 (git tag v1.9.4rel) * migrate to github from googlecode. * update proj4 source code from svn r2595 (version 4.9.0RC2). * include runtime_library_dirs in setup-proj.py. * added to_latlong method (issue 51). * fix back azimuth when lon1 and lon2 are identical.
2015-03-15Apply modified patch sent by palo@ in private mail. This brings all theserodent3-17/+26
packages to version 3.4.x. May this not break anything (although i feel it might).
2015-03-14wants to link with pthreadstnn1-1/+2
2015-03-14Recursive bump from geography/proj ABI change.gdt8-14/+16
2015-03-14bl3bump from geography/proj ABI changegdt2-3/+4
2015-03-14Adjust ABI/API for new proj (which changes both).gdt1-3/+3
CVS: ---------------------------------------------------------------------- CVS: CVSROOT cvs.NetBSD.org:/cvsroot CVS: please use "PR category/123" to have the commitmsg appended to PR 123
2015-03-14Update to 4.9.1gdt3-9/+15
Note that this changes the shlib version from 0.8 to 9.0. While that's bizarre, upstream does not view it as a bug. (Note that 4.9.0 had an RC but not an actual release.) Changes from 4.8.0: 4.9.1 Release Notes ------------------- o 4.9.0RC2 release was abandoned because it was not promoted in a timely fashion. Subsequent maintenance of tickets has continued, and a new 4.9.1 release was issued in its place. o Implement inverse solution for Winkel Tripel from Drazan Tutic #250 o More CMake configuration tweaks. The CMake configuration is probably not at feature parity with the autotools builds at this point but it is converging #256 o Tweak initialization ordering around setlocal which may have caused issues #237 o Support out-of-tree autoconf builds more completely #247 o Fix NaN handling by geod_inverse and geod_polygon_addedge #251 & #253 o Update config.sub and config.guess #257 o Adapt Charles Karney's CMake patches for smoother build #258 o Define default PROJ_LIB location for CMake compilation #261 o Fix Windows compilation on PJ_aitoff.c o Align CMake SOVERSION with autotools #263 o Regenerate nad/epsg with GDAL r28536 to avoid precision loss in TOWGS84 parameters, e.g. on Amersfoort / RD EPSG:4289 (#260) o Add CMake project-config.cmake scripts (#264 from Charles Karney) o Dial back test sensitivity #255 4.9.0 Release Notes ------------------- o Implement CMake as an option for building PROJ.4 o Implement new virtual file api (projFileAPI) so that all access to grid shift and init files can be hooked. o Replace geodesic implementation with one from Charles Karney and add a supported public interface (geodesic.h). o Upgraded to EPSG 8.5. o Removed old (deprecated) Java bindings in favor of the new api introduced in 4.8.0. o Implement the calcofi (Cal Coop Ocean Fish Invest Lines/Stations) projection o Install projects.h again for applications that want access to internal structures and functions despite the inherent fragility. o Various bug fixes and cleanup. o Added the CalCOFI pseudo-projection, #135
2015-03-02Update py-google-maps-services-python to 2.1.1.kleink2-6/+6
Bug fixes; no changelog.
2015-02-16SUBDIR += kplexplunky1-1/+2
2015-02-16new package: kplexplunky4-0/+51
-- kplex is a multitransport software data multiplexer, working with data conforming to the NMEA-0183 standard. Kplex multiplexes data inputs from sources such as serial lines, pseudo terminals and network interfaces and send to any (reasonable) number of similar outputs. kplex can perform filtering of inputs (so you only get the data you want, or don't get the data you don't want from a given source) and outputs (so you only send what you want where you want) and can perform fine-grained failover so that for any given type of data, you specify a priority order of the source you would like to take it from.
2015-02-09Update MASTER_SITES/HOMEPAGE.gdt1-3/+5
Add note about why it's not updated (scons). (Thanks to pettai@ for pointing out the issues.) CVS: ---------------------------------------------------------------------- CVS: CVSROOT cvs.NetBSD.org:/cvsroot CVS: please use "PR category/123" to have the commitmsg appended to PR 123
2015-02-02Add opencpn-plugin-weather_routingbouyer1-1/+2
2015-02-02Add opencpn-plugin-weather_routing version 20150201bouyer4-0/+67
This plugin creates optimized weather routes using isochrone method and predictive grib data or averaged gridded Climate data based upon constraint settings, start and finish information, and boat performance calculated using boat specs or polar data
2015-01-30Update py-google-maps-services-python to 2.1.kleink2-7/+6
No changelog provided.
2015-01-28Add opencpn-plugin-gshhsbouyer1-1/+2
2015-01-28Add opencpn-plugin-gshhs 2.2.4bouyer4-0/+60
OpenCPN is a free software (GPLv2) project to create a concise chart plotter and navigation software, for use underway or as a planning tool. OpenCPN is developed by a team of active sailors using real world conditions for program testing and refinement. This package contains data files from the Global Self-consistent, Hierarchical, High-resolution Shoreline Database which are displayed when no charts are present.
2015-01-22Update opencpn to 4.0.0. Changes since 3.2.2:bouyer8-450/+715
- Increased performance in all modes, particularly when using OpenGL graphics acceleration. - Additional network interface methods, including TCP/IP client/server and UDP broadcast. - Support for multiple data source instances, including Filtering and prioritization of messages Output of NMEA data streams for real-time integration into ship systems - Improved support for Mac OS X systems, including 64 bit native support. - Integrated Tablet/Touch screen support. - AIS Personal Locater Beacon (PLB) configuration and tracking. - Enhanced AIS target tracking modes. - GRIB PlugIn feature additions. Graphical GRIB email request generation. Moving particle wind overlay. Enhanced GRIB data type support. - Dashboard PlugIn feature additions. More selectable instruments. - Major update to embedded Users Manual. - Measurably improved performance and reliability over all supported platforms.
2015-01-21Append PKGVERSION_NOREV to EGG_NAME so that EGG_INFODIR substitution cankleink2-8/+9
happen; noticed during bulk building with a different PYVERSION than the one that had crept into the PLIST. Bump PKGREVISION.
2015-01-17Revbump for cogl 1.18.2prlw17-14/+14
2015-01-12+ py-google-maps-services-pythonkleink1-1/+2
2015-01-12Import google-maps-services-python-2.0 askleink4-0/+72
geography/py-google-maps-services-python. Use Python? Want to geocode something? Looking for directions? Maybe matrices of directions? This library brings the Google Maps API Web Services to your Python application. The Python Client for Google Maps Services is a Python Client library for the following Google Maps APIs: - Directions API - Distance Matrix API - Elevation API - Geocoding API - Time Zone API Keep in mind that the same terms and conditions apply to usage of the APIs when they're accessed through this library.
2014-12-30SUBDIR+= libnovaplunky1-1/+2
2014-12-30Add libnova-0.13.0plunky5-0/+78
libnova is a general purpose, double precision, Celestial Mechanics, Astrometry and Astrodynamics library. The intended audience of libnova is C / C++ programmers, astronomers and anyone else interested in calculating positions of astronomical objects or celestial mechanics. libnova is the calculation engine used by the Nova project.
2014-12-06+py-pycountry - packaged originally in pkgsrc-wip byrodent1-1/+2
kamel.derouiche@gmail.com.