Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.DS_Store
**/target/**
/nbproject/
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
29 changes: 29 additions & 0 deletions MapOfCountries/build/classes/Core/Bundle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
OpenIDE-Module-Display-Category=Layout
OpenIDE-Module-Short-Description=Show geographical maps in the background.
OpenIDE-Module-Long-Description=This plugin provides geographical map backgrounds of districts, countries and world regions to your networks.\nIt is build on top of the "GeoLayout" plugin by Alexis Jacomy.
OpenIDE-Module-Name=MapOfCountries

GeoLayout.centered.name = Center
GeoLayout.centered.desc = If set as true, the graph will be centered with the barycenter on the origin of the plan.

GeoLayout.regions.name = Region
GeoLayout.regions.desc = Choose which region should appear on the map.

GeoLayout.subregions.name = Subregion
GeoLayout.subregions.desc = Choose which subregion should appear on the map.

GeoLayout.countries.name = Country
GeoLayout.countries.desc = Choose which country should appear on the map

GeoLayout.districts.name = District
GeoLayout.districts.desc = Choose which district from a given country should appear on the map

GeoLayout.scale.name = Scale
GeoLayout.scale.desc = Scale size, increase for larger graph (corresponds generally to the virtual radius of the Earth)

GeoLayout.weight.name = Weight
GeoLayout.weight.desc = Thickness of the borders.

GeoLayout.projection.name = Projection
GeoLayout.projection.desc = The name of the projection you want to use
OpenIDE-Module-Short-Description=A layout to display maps in the backgrounds of networks
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added MapOfCountries/build/classes/Core/GeoLayout$1.class
Binary file not shown.
Binary file not shown.
Binary file added MapOfCountries/build/classes/Core/GeoLayout.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Core.GeoLayoutBuilder
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
OpenIDE-Module-Display-Category=Layout Plugin
OpenIDE-Module-Long-Description=\
<h1>Map of Countries</h1>\nThis plugin allows you to displays maps of countries, world regions, and regions within countries that you choose from a list. \
This can be useful if you want to plot geolocalized networks on it.\
<br>\n<br>\n\n<h3>Release history</h3>\nSept. 24, 2013: 1.0, first release<br>\nOct 19, 2014: 1.1, removed labels from background nodes because they were just an inconvenience.\n\
Jan 1, 2015: 1.2, fixed a null pointer exception.\
<br>\nMay 13, 2015: 1.3, added a new feature: districts and regions from countries. \
Australian states / territories are the first addition.\
<br>\nAug 05, 2015: 1.4, added a new feature: "Weight" allows to control the thickness of the lines of the borders<br>\n<br>\n\n<h3>Comments and feedbacks<h3>\n<a href="http://www.clementlevallois.net">www.clementlevallois.net</a>.\
<br>\n<br>\n\n<h3>Acknowledgements</h3>\nThanks to Alexis Jacomy who built "GeoLayout", on which this plugin is very largely based.\n\
<br>\n<br>\nThe maps are provided by Bjorn Sandvik, thematicmapping.org. \
The note attached to the dataset says:<br>\n<br>\n"Use this dataset with care, as several of the borders are disputed.\
<br>\n<br>\nThe original shapefile (world_borders.zip, 3.2 MB) was downloaded from the Mapping Hacks website:<br>\nhttp://www.mappinghacks.com/data <br>\n<br>\nThe dataset was derived by Schuyler Erle from public domain sources.\
<br>\nSean Gilles did some clean up and made some enhancements."\
<br>\n<br>\n<br>\nDataset for Australian states from: <a href="http://www.abs.gov.au/ausstats/abs@.nsf/mf/1259.0.30.001?\
OpenDocument">Australian Bureau of Statistics.\
<br>
OpenIDE-Module-Name=Map Of Countries
OpenIDE-Module-Short-Description=Maps of countries in Gephi
9 changes: 9 additions & 0 deletions MapOfCountries/build/classes/resources/Australian states.csv

Large diffs are not rendered by default.

246 changes: 246 additions & 0 deletions MapOfCountries/build/classes/resources/coordinates.txt

Large diffs are not rendered by default.

Binary file not shown.
9 changes: 9 additions & 0 deletions MapOfCountries/nbproject/private/private.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
<group>
<file>file:/H:/files/NetBeansProjects/gephi-plugins-0.9/MapOfCountries/src/Core/GeoLayout.java</file>
</group>
</open-files>
</project-private>
4 changes: 2 additions & 2 deletions modules/MapOfCountries/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<version>0.9.1</version>
</parent>

<groupId>net</groupId>
<artifactId>clementlevallois</artifactId>
<groupId>net.clementlevallois</groupId>
<artifactId>mapofcountries</artifactId>
<version>1.5.0</version>
<packaging>nbm</packaging>

Expand Down