| 575 | | node[inside("FR")] /* matches any node located inside of France (this includes all the overseas territories) */ |
| 576 | | node[inside("FX")] /* matches any node located inside of Metropolitan France (i.e. only the mainland part with its near islands including Corse) */ |
| 577 | | node[inside("EU")] /* matches any node located inside of the European Union */ |
| 578 | | node[inside("FR,DE")] /* matches any node located inside of France __OR__ inside of Germany */ |
| 579 | | node[inside("US-FL")] /* matches any node located inside of the US state Florida */ |
| 580 | | |
| 581 | | node[outside("FR")] /* matches any node located outside of France */ |
| 582 | | node[outside("FR,DE")] /* matches any node located outside of France __AND__ outside of Germany */ |
| 583 | | node[inside("US")][outside("US-FL")] /* matches any node located inside of the USA except the state Florida */ |
| | 575 | /* matches any node located … */ |
| | 576 | node[inside("FR")] /* … inside of France (includes the overseas territories) */ |
| | 577 | node[inside("FX")] /* … inside of Metropolitan France (i.e. only the |
| | 578 | mainland part with its near islands including Corse) */ |
| | 579 | node[inside("EU")] /* … inside of the European Union */ |
| | 580 | node[inside("FR,DE")] /* … inside of France __OR__ inside of Germany */ |
| | 581 | node[inside("US-FL")] /* … inside of the US state Florida */ |
| | 582 | |
| | 583 | node[outside("FR")] /* … outside of France */ |
| | 584 | node[outside("FR,DE")] /* … outside of France __AND__ outside of Germany */ |
| | 585 | node[inside("US")][outside("US-FL")] /* … inside of the USA except the state Florida */ |